Account streams
/accounts/ws/stream?api_key=<your_api_key>
This websocket will feed notifications for
account balances updates
orders updates
Query params
Name
Value
api_key
<your_api_key>
Stream Response
// exmaple response for ADA balance changes
{
type: "account",
sub_type: "balance",
balance: [
{
"asset": "usdx",
"asset_unit": "5066154a102ee037390c5236f78db23239b49c5748d3d349f3ccf04b55534458",
"free": 1153.006812,
"locked": 0
},
{
"asset": "ada",
"asset_unit": "",
"free": 1383.52097,
"locked": 0
}
]
}
Last updated