Get Account Info from Binance API

Job ID: 32351902

Budget: $30 – $250 USD

I am trying to get account info from my Binance account via API or even Server time. I can get market prices for coin pairs, but can not get like my balance of a specific coin pair that I have in Binance. I need someone who CURRENTLY is able to do this, NOT someone who THINKS they can.

Here is the code I have.

using System.Windows.Forms;
using Newtonsoft.Json;
using Binance.API.Csharp.Client;
...
string sURL = "https://www.binance.us";
string sWSEndpoint = "wss://stream.binance.us:9443/ws/";
string sAPIKey = "your key";
string sSecret = "your secret";
ApiClient client = new ApiClient(sAPIKey, sSecret, sURL, sWSEndpoint, true);
BinanceClient bClient = new BinanceClient(client);
var time = bClient.GetServerTime().Result; //app hangs here during debug with no errors or other messages
Related categories: .NET Windows Desktop C# Programming