v1

latestOpenAPI 3.0.32026-08-04850206.9 KB
Liquidations

Daily liquidations

Daily aggregates (kept forever), summed across exchanges/instruments per day — total/long/short USD plus long/short position counts. Today's row is partial and updates every ~15 minutes. Source coverage is currently OKX swap markets.

get/api/v1/liquidations/daily

Query parameters

daysinteger nullable

Number of calendar days incl. today (1–365, default 30).

Example:30

Number of calendar days incl. today (1–365, default 30).

Response

Example response

{
  "data": [
    {
      "date": "2026-07-02",
      "total_usd": 27888888.76,
      "long_usd": 18345672.1,
      "short_usd": 9543216.66,
      "longs": 4231,
      "shorts": 2614
    }
  ],
  "meta": {
    "days": 30,
    "note": "Source coverage: OKX swap markets."
  }
}