Get a list of currency assets
Description
GET /v4/balances
Limit Rule
- 10 requests/second/apikey
Parameters
Name | Type | Mandatory | Default | Description | Ranges |
---|---|---|---|---|---|
currencies | string | No | N/A | List of currencies, comma separated, e.g. usdt,btc |
Response Example
{
"rc": 0,
"mc": "string",
"ma": [{}],
"result": {
"totalBtcAmount": 0,
"assets": [
{
"currency": "string", // currency
"currencyId": 0, // currency ID
"frozenAmount": 0, // frozen amount
"availableAmount": 0, // available amount
"totalAmount": 0, // total amount
"convertBtcAmount": 0 // converted BTC amount
}
]
}
}