본문으로 건너뛰기

liquidation_feed

Most recent liquidation events across ALL futures symbols, newest first. The REST counterpart to the /ws/v1/liquidation/feed WebSocket firehose. Use to find recent large liquidations across the entire market.

Usage hints:

  • Filter by exchange or base to narrow scope
  • Use minVolumeUsd to filter for whale-sized liquidations only (e.g., 100000 for $100K+)
  • Pair with WebSocket /ws/v1/liquidation/feed for live updates

REST endpoint

GET /api/v1/liquidation/feed — see REST reference.

Parameters

NameTypeRequiredDefaultDescriptionExample
exchangestringnoExchange filter"..."
basestringnoBase asset filter (case-insensitive)"..."
minVolumeUsdnumbernoMinimum VolumeUsd filter0
limitintegerno100Number of events (1-1000) (default: 100)100

Example invocation

JSON-RPC tools/call payload:

{
"jsonrpc": "2.0",
"id": 1,
"method": "tools/call",
"params": {
"name": "liquidation_feed",
"arguments": {
"limit": 100
}
}
}