Liquidation
Get recent liquidation orders in Bybit.
Covers: USDT Perpetual, USDC Perpetual, Inverse Perpetual, Inverse Future
Push frequency: real-time
Topic:
liquidation.{symbol}
Response Parameters
| Parameter | Type | Comments |
|---|---|---|
| topic | string | Topic name |
| type | string | Message type. snapshot |
| ts | number | The timestamp (ms) that system generates the data. |
| data | array | Object |
| > updatedTime | number | Data updated timestamp (ms) |
| > symbol | string | Symbol name |
| > size | string | Filled size |
| > price | string | Filled price |
| > side | string | Side |
Subscription Example
{
"op": "subscribe",
"args": [
"liquidation.GALAUSDT"
],
"req_id": "test" // optional
}
Stream Example
{
"data": {
"price": "0.03803",
"side": "Buy",
"size": "1637",
"symbol": "GALAUSDT",
"updatedTime": 1673251091822
},
"topic": "liquidation.GALAUSDT",
"ts": 1673251091822,
"type": "snapshot"
}