LIQUIDATION
Subscribe to live liquidation events as individual ticks.
Subscribe
JSON
{
"jsonrpc": "2.0",
"id": 0,
"method": "public/subscribe",
"params": {
"channels": [
{
"type": "LIQUIDATION",
"category": "*",
"exchange": "BINANCE_FUTURES",
"symbol": "BTCUSDT"
}
],
"compression": "brotli",
"version": "v2"
}
}
Response
JSON
{
"points": [
{
"series": {
"type": "LIQUIDATION",
"symbol": "BTCUSDT",
"exchange": "BINANCE_FUTURES",
"normalizedSymbol": "BTC-USDT",
"category": "PERPETUAL",
"side": "SELL",
"coin": "BTC",
"inverse": false
},
"liquidation": {
"id": "394820175",
"price": 89750.5,
"amount": 0.15,
"timestamp": {
"seconds": 1769058900,
"nanoseconds": 420000000
}
}
}
]
}
Response fields
| Field | Type | Description |
|---|---|---|
series.side | Side | Liquidation side -- BUY or SELL |
liquidation.id | string | Exchange liquidation ID |
liquidation.price | double | Liquidation price |
liquidation.amount | double | Liquidation size in base asset |
liquidation.timestamp | Timestamp | Liquidation event time (seconds + nanoseconds) |