liquidation_stats
Aggregate liquidation stats (total, long/short split, count, venue count, biggest single event) over a 1h/4h/24h window. Backs the liquidation page KPI strip for windows the live feed buffer can't cover.
REST endpoint
GET /api/v1/liquidation/stats — see REST reference.
Parameters
| Name | Type | Required | Default | Description | Example |
|---|---|---|---|---|---|
window | string | no | 1h | Rolling window (1h, 4h, 24h) (default: 1h) | "1h" |
exchange | string | no | Exchange filter | "..." | |
minVolumeUsd | number | no | Minimum VolumeUsd filter | 0 |
Example invocation
JSON-RPC tools/call payload:
{
"jsonrpc": "2.0",
"id": 1,
"method": "tools/call",
"params": {
"name": "liquidation_stats",
"arguments": {
"window": "1h"
}
}
}