GET
https://dev.yimmit.com/api/v3/liquidity/balancesGet Balances
GET api/v3/liquidity/balances
Get list of user balances with currency and balance
Parameters
| Name | Type | Mandatory | Description |
|---|---|---|---|
| currency_id | STRING | NO | Currency code (e.g., btc, eth). |
Responses
- 200 Successful response
Returns a paginated array of balance objects showing the user's available and locked balances for each currency.
Response Fields (for each balance object):
currency_id: Currency code identifier (e.g.,bnb,btc,eth,usdt)available_balance: Amount of currency available for trading or withdrawallocked_balance: Amount of currency locked in open orders or pending transactions
Example
[
{
"currency_id": "bnb",
"available_balance": "12.45890000",
"locked_balance": "1.25000000"
},
{
"currency_id": "btc",
"available_balance": "0.84235619",
"locked_balance": "0.15764381"
},
{
"currency_id": "eth",
"available_balance": "5.73450000",
"locked_balance": "0.26550000"
},
{
"currency_id": "pol",
"available_balance": "1500.00000000",
"locked_balance": "250.00000000"
},
{
"currency_id": "trx",
"available_balance": "3500.75000000",
"locked_balance": "499.25000000"
},
{
"currency_id": "usd",
"available_balance": "12500.00",
"locked_balance": "3500.00"
},
{
"currency_id": "usdc",
"available_balance": "8200.50000000",
"locked_balance": "799.50000000"
},
{
"currency_id": "usdt",
"available_balance": "5400.89650000",
"locked_balance": "1200.10350000"
}
]