TradePortfolio

Liquidation Movers

Dev

GET /markets/liquidation-movers


Symbols with the largest 24h liquidation USD change — where forced liquidations have increased most dramatically versus the prior period. Useful for spotting concentrated liquidation pressure, identifying stressed positions, or feeding a liquidation alert pipeline.

Authentication

Requires Dev tier or higher.

Parameters

Query parameters

NameTypeRequiredDescription
min_valuefloatMinimum USD liquidation threshold. Defaults to 100k.
limitintMaximum results to return.
exchangesstringComma-separated exchange filter.

Example request

bash
curl -H "X-Api-Key: lk_live_your_key_here" \
  "https://api.loris.tools/markets/liquidation-movers?limit=10"

Example response

json
{
  "metric": "liquidation",
  "timestamp": "2026-06-08 06:00:00",
  "exchanges": null,
  "data": [
    {
      "symbol": "BTC",
      "value": 207000000,
      "change_24h_pct": 214.5,
      "rank": 1
    },
    {
      "symbol": "ETH",
      "value": 139000000,
      "change_24h_pct": 182.3,
      "rank": 2
    },
    {
      "symbol": "SOL",
      "value": 48000000,
      "change_24h_pct": 95.7,
      "rank": 3
    }
  ]
}

Related