Skip to main content

Get a list of currency assets

Description

GET /v4/balances


Limit Rule

  • 10 requests/second/apikey

Parameters

NameTypeMandatoryDefaultDescriptionRanges
currenciesstringNoN/AList 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
}
]
}
}