Skip to main content

Liquidation

Get recent liquidation orders in Bybit, at most one order is published per second per symbol

Covers: USDT Perpetual, USDC Perpetual, Inverse Perpetual, Inverse Future

Push frequency: 1s

Topic: liquidation.{symbol}

Response Parameters

ParameterTypeComments
topicstringTopic name
typestringMessage type. snapshot
tsnumberThe timestamp (ms) that system generates the data.
dataarrayObject
> updatedTimenumberData updated timestamp (ms)
> symbolstringSymbol name
> sizestringFilled size
> pricestringFilled price
> sidestringSide

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"
}