TradePortfolio

Filter Counts

Dev

GET /liquidations/filter-counts


Returns the count of liquidation events per (symbol, exchange) pair recorded in the last 24 hours. Designed to populate filter UI controls — knowing which pairs have activity before showing them in a dropdown avoids presenting empty options to users.

Authentication

Requires Dev tier or higher.

Parameters

This endpoint takes no parameters.

Example request

bash
curl -H "X-Api-Key: lk_live_your_key_here" \
  https://api.loris.tools/liquidations/filter-counts

Example response

json
{
  "pairs": [
    { "symbol": "BTC", "exchange": "binance", "count": 3420 },
    { "symbol": "ETH", "exchange": "binance", "count": 2890 },
    { "symbol": "BTC", "exchange": "bybit", "count": 2100 },
    { "symbol": "SOL", "exchange": "okx", "count": 840 }
  ]
}

Related