Get a list of currency assets
GET: /v1/spot/balances
Parameters
Parameter | Type | mandatory | Default | Description | Ranges |
---|---|---|---|---|---|
currencies | string | false | List of currencies, comma separated,eg: usdt,btc | ||
queryAccountId | long | false | |||
filterIsDisplayFalse | boolean | false | true |
Limit Flow Rules
10/s/apikey
Response
{
"code": 200,
"msg": "string",
"msgInfo": [
{}
],
"data": {
"totalBtcAmount": 0,
"totalUsdtAmount": 0,
"assets": [
{
"currency": "string",
"currencyId": 0,
"frozenAmount": 0,
"freeze": 0,
"lock": 0,
"copyTrade": 0,
"trade": 0,
"withdraw": 0,
"availableAmount": 0,
"totalAmount": 0,
"convertBtcAmount": 0,
"convertUsdtAmount": 0
}
]
}
}