All URIs are relative to https://www.bitmex.com/api/v1
Method | HTTP request | Description |
---|---|---|
WalletGetAssetsConfig | GET /wallet/assets | Get Assets Config |
WalletGetNetworksConfig | GET /wallet/networks | Get Networks Config |
List WalletGetAssetsConfig ()
Get Assets Config
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;
namespace Example
{
public class WalletGetAssetsConfigExample
{
public void main()
{
var apiInstance = new WalletApi();
try
{
// Get Assets Config
List<AssetsConfig> result = apiInstance.WalletGetAssetsConfig();
Debug.WriteLine(result);
}
catch (Exception e)
{
Debug.Print("Exception when calling WalletApi.WalletGetAssetsConfig: " + e.Message );
}
}
}
}
This endpoint does not need any parameter.
No authorization required
- Content-Type: application/json, application/x-www-form-urlencoded
- Accept: application/json, application/xml, text/xml, application/javascript, text/javascript
[Back to top] [Back to API list] [Back to Model list] [Back to README]
List WalletGetNetworksConfig ()
Get Networks Config
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;
namespace Example
{
public class WalletGetNetworksConfigExample
{
public void main()
{
var apiInstance = new WalletApi();
try
{
// Get Networks Config
List<NetworksConfig> result = apiInstance.WalletGetNetworksConfig();
Debug.WriteLine(result);
}
catch (Exception e)
{
Debug.Print("Exception when calling WalletApi.WalletGetNetworksConfig: " + e.Message );
}
}
}
}
This endpoint does not need any parameter.
No authorization required
- Content-Type: application/json, application/x-www-form-urlencoded
- Accept: application/json, application/xml, text/xml, application/javascript, text/javascript
[Back to top] [Back to API list] [Back to Model list] [Back to README]