Trade

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"
    }]
}
FieldDescription
priceTrade price
qtyTrade quantity
sideTrade direction: buy or sell
tradeidTrade ID
tsTrade timestamp (ms)