Skip to main content

Wallet

This topic pushes spot wallet information

Push frequency: real-time

Topic: outboundAccountInfo

Response Parameters

ParameterTypeComments
topicstringTopic name
tsnumberThe timestamp (ms) that message is sent out
typestringData type. snapshot
dataarrayObject
> estringEvent type
> EstringTimestamp
> TbooleanAllow trade
> WbooleanAllow withdraw
> DbooleanAllow deposit
> BarrayWallet balance change
>> astringcoin name
>> fstringAvailable balance
>> lstringReserved for orders

Subscribe Example

{
"req_id": "acctInfo_1", //optional
"op": "subscribe",
"args": [
"outboundAccountInfo"
]
}

Stream Example

{
"type": "snapshot",
"topic": "outboundAccountInfo",
"ts": "1662107217641",
"data": [
{
"e": "outboundAccountInfo",
"E": "1662107217640",
"T": true,
"W": true,
"D": true,
"B": [
{
"a": "USDT",
"f": "176.81254174",
"l": "201.575"
}
]
}
]
}