Skip to main content

All Liquidation

Subscribe to the liquidation stream, push all liquidations that occur on Bybit.

Covers: USDT contract / USDC contract / Inverse contract

Push frequency: 500ms

Topic:
allLiquidation.{symbol} e.g., allLiquidation.BTCUSDT

Response Parameters

ParameterTypeComments
topicstringTopic name
typestringData type. snapshot
tsnumberThe timestamp (ms) that the system generates the data
dataObject
> TnumberThe updated timestamp (ms)
> sstringSymbol name
> SstringPosition side. Buy,Sell. When you receive a Buy update, this means that a long position has been liquidated
> vstringExecuted size
> pstringBankruptcy price

Subscribe Example

{
"op": "subscribe",
"args": [
"allLiquidation.SOLUSDT","allLiquidation.ROSEUSDT"
]
}

Message Example

{
"topic": "allLiquidation.ROSEUSDT",
"type": "snapshot",
"ts": 1739502303204,
"data": [
{
"T": 1739502302929,
"s": "ROSEUSDT",
"S": "Sell",
"v": "20000",
"p": "0.04499"
}
]
}