Get User Futures Account Balance
Description
Get user futures account balance data
HTTP Request
- GET /fapi/v1/account/futuresAccounts
Request Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
Request Example
http
curl 'https://futuresopenapi.100ex.com/fapi/v1/account/futuresAccounts' \
-H "X-CH-TS:1736156253259" \
-H "X-CH-SIGN:*" \
-H "X-CH-APIKEY:********" \
-H "Content-Type: application/json"Response Parameters
| Parameter | Type | Description |
|---|---|---|
| > marginCoin | String | Margin coin |
| > balance | String | Balance, including crossed margin occupied, total available |
| > lockedMargin | String | Frozen margin |
| > isolatedMargin | String | Isolated margin occupied |
Response Example
json
{
"code": "0",
"msg": "suc",
"data": [
{
"marginCoin": "USDT",
"balance": "10000.32395",
"lockedMargin": "3688.08325",
"isolatedMargin": "0"
}
],
"succ": true
}