TradePortfolio

Movers

Dev

GET /markets/movers


Returns the top symbols sorted by 24h volume or OI change — which coins are moving the most relative to yesterday. Configurable minimum threshold, result count, and exchange scope. Use it to build a 'biggest movers' dashboard widget or scan for unusual activity before it becomes headline news.

Authentication

Requires Dev tier or higher.

Parameters

Query parameters

NameTypeRequiredDescription
metricstringvolume or oi.
min_valuefloatMinimum absolute value filter. Defaults to 10M for volume, 1M for OI.
limitintMaximum results to return. Omit for all matching.
exchangesstringComma-separated exchange filter.

Example request

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

Example response

json
{
  "metric": "volume",
  "timestamp": "2026-06-08 06:00:00",
  "exchanges": null,
  "data": [
    {
      "symbol": "SOL",
      "value": 7800000000,
      "change_24h_pct": 42.3,
      "rank": 1
    },
    {
      "symbol": "DOGE",
      "value": 3200000000,
      "change_24h_pct": 38.1,
      "rank": 2
    },
    {
      "symbol": "BTC",
      "value": 28400000000,
      "change_24h_pct": 14.2,
      "rank": 3
    }
  ]
}

Errors

  • 400 Missing required parameter `metric`, or invalid value (must be volume or oi).

For authentication errors (401) and rate limit responses (429), see Errors.

Related