API Reference

Liquidation Order

The liquidation order snapshot streams provide information on forced liquidation orders for market symbols.

# Required Account Level: Standard Edition and Above

Real-Time Liquidation Orders Push

Channel: liquidationOrders

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

{
    "method": "subscribe",
    "channels": ["liquidationOrders"]
}

Response Example

Upon receiving data, the response will look like this:

{
    "channel": "liquidationOrders",
    "data": [
        {
            "baseAsset": "BTC",
            "exName": "Binance",
            "price": 56738.00,
            "side": 2,
            "symbol": "BTCUSDT",
            "time": 1725416318379,
            "volUsd": 3858.18400
        }
    ]
}