List subaccounts
Lists all subaccounts associated with a main (parent) account. Returns address, balance, and other account details for each subaccount.
POST /api/v1/account/subaccount/listRequest Body
Field
Type
Need
Description
Example
{
"account": "42txU9As...",
"signature": "5j1Vy9Uq...",
"timestamp": 1716200000000,
"expiry_window": 30000
}Response
{
"success": true,
"data": {
"subaccounts": [
{
"address": "69txU9As...",
"balance": "1000.50",
"pending_balance": "0.00",
"fee_level": 1,
"fee_mode": "auto",
"use_ltp_for_stop_orders": false,
"created_at": 1716200000000
}
]
},
"error": null,
"code": null
}Field
Type
Description
Last updated