Skip to main content

cex_symbol_liquidation

Rolling-window long/short liquidation volume aggregated across all events for every (exchange, quote) pairing of a base asset. Window max 30d; default 24h.

Usage hints:

  • base is required (e.g., BTC, ETH)
  • Use 'window' parameter (e.g., 1h, 24h, 7d) to control aggregation period
  • Faster than liquidation_feed when you need per-asset totals
  • Long liq dominant = bearish capitulation; short liq dominant = short squeeze

REST endpoint

GET /api/v1/cex/symbol/liquidation — see REST reference.

Parameters

NameTypeRequiredDefaultDescriptionExample
basestringyesBase asset (e.g. BTC)"..."
windowstringnoTime window: 1h / 24h / 7d (default 24h, max 30d)"..."

Example invocation

JSON-RPC tools/call payload:

{
"jsonrpc": "2.0",
"id": 1,
"method": "tools/call",
"params": {
"name": "cex_symbol_liquidation",
"arguments": {
"base": "..."
}
}
}