API Reference

Futures Trade Order

The futures trade order streams provide real-time information on executed futures trades for market symbols.

# Required Account Level: Standard Edition and Above

Real-Time Futures Trade Orders Push

Channel: futures_order@{exchange}_{symbol}@{minVol}

To subscribe to the futures_order channel, send the following message:

{
    "method": "subscribe",
    "channels": ["futures_order@Binance_BTCUSDT@10000"]
}

Response Example

Upon receiving data, the response will look like this:

{
    "channel": "futures_order@Binance_BTCUSDT@10000",
    "data": [
        {
            "baseAsset": "BTC",
            "exName": "Binance",
            "price": 56738.00,
            "side": 2,//side=1  sell.   side=2   buy   
            "symbol": "BTCUSDT",
            "time": 1725416318379,
            "volUsd": 3858.18400
        }
    ]
}