TradePortfolio

Symbol Stats

Free

GET /markets/{symbol}/stats


Aggregated price, 24h volume, OI, top funding rate, and 24h liquidations for one symbol, rolled up across all exchanges. The compact overview endpoint for a symbol page — use it when you need the headline numbers without the per-exchange breakdown.

Authentication

Available on all tiers. Free tier: BTC and ETH only — requests for other symbols return 403. Dev and above: all symbols.

Parameters

Path parameters

NameTypeRequiredDescription
symbolstringBase symbol, e.g. ETH.

Tier behavior

  • Free: BTC and ETH only. Requests for any other symbol return 403 with required_tier: dev.
  • Dev: All symbols.

Example request

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

Example response

json
{
  "symbol": "ETH",
  "timestamp": "2026-06-08 06:00:00",
  "price_usd": 3820,
  "price_24h_change_pct": 2.1,
  "volume_24h_usd": 14200000000,
  "volume_24h_change_pct": 8.7,
  "oi_usd": 14200000000,
  "oi_24h_change_pct": -1.2,
  "top_funding_bps": -0.45,
  "top_funding_exchange": "bybit",
  "liquidation_24h_usd": 139000000
}

Errors

  • 403 Free tier requesting a symbol other than BTC or ETH. Upgrade to Dev.
  • 404 Symbol not found in Redis snapshot.

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

Related