Sub-Account
Query Managed Sub-account Futures Asset Details (For Investor Master Account)
Investor can use this api to query managed sub account futures asset details
get/sapi/v1/managed-subaccount/fetch-future-asset
Query parameters
emailstring required
recvWindowinteger
Example:5000
The value cannot be greater than 60000
timestampinteger required
UTC timestamp in ms
signaturestring required
Signature
Response
Sub account futures assset details
Example response
{
"code": 200,
"message": "OK",
"snapshotVos": [
{
"type": "FUTURES",
"updateTime": 1626400907000,
"data": {
"assets": [
{
"asset": "USDT",
"marginBalance": 100,
"walletBalance": 100
}
],
"position": [
{
"symbol": "BTCUSDT",
"entryPrice": 17000,
"markPrice": 17000,
"positionAmt": 0.1
}
]
}
}
]
}