TradePortfolio

Exchange Stats

Dev

GET /markets/exchanges/{exchange}/stats


Aggregated totals for one exchange — total 24h volume, OI, change percentages, and the OI-to-volume ratio. A compact summary endpoint when you need a single-exchange snapshot without the full symbol table.

Authentication

Requires Dev tier or higher.

Parameters

Path parameters

NameTypeRequiredDescription
exchangestringLowercase exchange slug, e.g. binance.

Example request

bash
curl -H "X-Api-Key: lk_live_your_key_here" \
  https://api.loris.tools/markets/exchanges/binance/stats

Example response

json
{
  "exchange": "binance",
  "symbol_count": 312,
  "total_volume_24h_usd": 42800000000,
  "volume_24h_change_pct": 12.4,
  "total_oi_usd": 18200000000,
  "oi_24h_change_pct": 2.1,
  "oi_vol_ratio": 0.425,
  "timestamp": "2026-06-08 06:00:00"
}

Errors

  • 404 Exchange snapshot not found.

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

Related