본문으로 건너뛰기

liquidation_symbol_history

Bucketed long/short liquidation USD over time for a single (base, quote) pair, joined with the futures-candle close as a reference price line. Visualizes liquidation cascades against price action.

Usage hints:

  • symbol is required (e.g., BTC-USDT)
  • Intervals: 5m, 15m, 1h; windows: 24h, 72h, 7d
  • Default exchange falls back to Binance if not specified
  • Cached ~30s server-side

REST endpoint

GET /api/v1/liquidation/symbol-history — see REST reference.

Parameters

NameTypeRequiredDefaultDescriptionExample
symbolstringyesBase asset"..."
quotestringnoUSDTQuote asset (default: USDT)"USDT"
exchangestringnoOptional exchange filter for the liquidation aggregation. The price line stays on Binance unless this is set."..."
intervalstringno5mBucket interval (5m, 15m, 1h) (default: 5m)"5m"
windowstringno24hLookback window (24h, 72h, 7d) (default: 24h)"24h"

Example invocation

JSON-RPC tools/call payload:

{
"jsonrpc": "2.0",
"id": 1,
"method": "tools/call",
"params": {
"name": "liquidation_symbol_history",
"arguments": {
"symbol": "...",
"quote": "USDT",
"interval": "5m",
"window": "24h"
}
}
}