Read balances and account status.
GET/api/v1/accountWeight: 10USER_DATA
Return your account: trading permissions, fee rates and the balance of every asset. Each balance splits into free (available to trade or withdraw) and locked (reserved by open orders).
{
"canTrade": true,
"canWithdraw": true,
"makerFee": "0.0000",
"takerFee": "0.0010",
"updateTime": 1717430400123,
"balances": [
{ "asset": "BTC", "free": "0.50000000", "locked": "0.01000000" },
{ "asset": "USDT", "free": "12500.42", "locked": "640.00" }
]
}
NoteBalances not listed are zero. locked funds are held by resting orders; cancel an order to release its locked balance.