Get Account Balance
Description
Get information about your Futures account.
HTTP Request
GET /v3/account/balance
Request Parameters
None
Response Parameters
Parameter | Type | Description |
---|---|---|
state | String | Account Status |
eq | String | equity in assets |
isoEq | String | Isolated asset equity |
im | String | Initial margin = cross position margin + cross position pending order freezing |
mm | String | Account maintenance margin |
mmr | String | Account maintenance margin rate |
upl | String | unrealized profit or loss-cross |
availMgn | String | Available margin |
cTime | String | Account creation time |
uTime | String | Account update time |
details | List | Account details |
details.ccy | String | Currency |
details.eq | String | Asset equity of this currency |
details.isoEq | String | Isolated position equity of this currency = isoAvail + isoUpl + isoHold |
details.avail | String | The currency is available |
details.upl | String | unrealized profit or loss |
details.isoAvail | String | Isolated margin of this currency - Isolated position frozen |
details.isoHold | String | This currency’s isolated margin orders are frozen |
details.isoUpl | String | Isolated position unrealized profit and loss |
details.im | String | Initial margin of this currency |
details.mm | String | The currency maintenance margin |
details.mmr | String | This currency maintains a margin rate |
details.imr | String | The initial margin rate of this currency, single currency mode |
details.cTime | String | creation time |
details.uTime | String | Update time |
Response Example
{
"code": 200,
"msg": "Success",
"data": {
"state": "NORMAL",
"eq": "959.581928139999996061",
"isoEq": "0",
"im": "5.28",
"mm": "1.32",
"mmr": "0.001375599061727448",
"upl": "-2.4",
"availMgn": "954.301928139999996061",
"cTime": "1690196536233",
"uTime": "1721902285120",
"details": [
{
"ccy": "USDT",
"eq": "959.581928139999996061",
"isoEq": "0",
"avail": "961.981928139999996061",
"trdHold": "0",
"upl": "-2.4",
"isoAvail": "0",
"isoHold": "0",
"isoUpl": "0",
"im": "5.28",
"mm": "1.32",
"mmr": "0.001375599061727448",
"imr": "0.005502396246909794",
"cTime": "1717396712353",
"uTime": "1721902285120"
}
]
}
}