Skip to main content

Get SubAccount Unified Assets

Description

Get SubAccount Unified Assets

HTTP Request

  • GET /api/v3/account/sub-unified-assets
  • Rate limit: 1/sec/UID
  • Unified account management read permissions are required
Request
curl -X GET "https://api.bitget.com/api/v3/account/sub-unified-assets" \
-H "ACCESS-KEY:*******" \
-H "ACCESS-SIGN:*" \
-H "ACCESS-PASSPHRASE:*" \
-H "ACCESS-TIMESTAMP:1659076670000" \
-H "locale:en-US" \
-H "Content-Type: application/json"

Request Parameters

ParameterTypeRequiredComments
subUidStringNoSub-account UID
Leave blank to return all sub-account asset lists
cursorStringNoCursor ID
For pagination. Omit in first request. Pass previous cursor in subsequent requests.
limitStringNoSub-accounts per Page
Default value is 10, maximum is 50.
Response
{
"code": "00000",
"msg": "success",
"requestTime": 1751970047603,
"data": [
{
"subUid": "1111111111",
"cursor": "5832862",
"assets": [
{
"coin": "USDT",
"equity": "1",
"usdValue": "0.99996985",
"balance": "1",
"available": "1",
"debt": "0",
"locked": "0"
}
]
}
]
}

Response Parameters

ParameterTypeComments
subUidStringSub-account UID
assetsStringList of account coins
> coinStringAsset coin
> equityStringEquity of the asset coin
Unit is the asset coin
> usdValueStringUSD value of the asset coin
Unit is USD
> balanceStringBalance of the asset coin
> debtStringDebt of the asset coin
> availableStringAvailable amount of the asset coin
> lockedStringAmount occupied by orders
Only has value in spot order scenarios
cursorStringCursor ID

How was your Reading Experience with us?