Real-time trade executions.
Pushed for every matched trade. Each message includes the price, quantity, direction, and trade ID.
Subscribe
{
"event": "subscribe",
"arg": [{ "channel": "TRADE", "sym": "BINANCE_PERP_BTC_USDT" }]
}
Push Data
{
"arg": { "channel": "TRADE", "sym": "BINANCE_PERP_BTC_USDT" },
"data": [{
"price": "70297.8",
"qty": "0.003",
"side": "buy",
"tradeid": "7480874973",
"ts": "1774331621317"
}]
}
| Field | Description |
|---|---|
price | Trade price |
qty | Trade quantity |
side | Trade direction: buy or sell |
tradeid | Trade ID |
ts | Trade timestamp (ms) |
