Get a single currency asset
Description
GET /v4/balance
Parameters
Name | Type | Mandatory | Default | Description | Ranges |
---|---|---|---|---|---|
currency | string | Yes | N/A | Example: usdt | - |
Code Example
Java
public String getBalance(){
// Your request logic here
}
Python
# Your request logic here
Response Example
{
"rc": 0,
"mc": "string",
"ma": [{}],
"result": {
"currency": "usdt",
"currencyId": 0,
"frozenAmount": 0,
"availableAmount": 0,
"totalAmount": 0,
"convertBtcAmount": 0
}
}