TradePortfolio

Symbols

Dev

GET /markets/symbols


Global symbol leaderboard with price, 24h volume, OI, funding rate, liquidations, and asset classification for every tracked symbol. The most comprehensive per-symbol summary endpoint — use it to build a full markets table, power a screener, or seed your own database with a point-in-time snapshot.

Authentication

Requires Dev tier or higher. Dev: top 200 symbols by OI. Pro: full list.

Parameters

Query parameters

NameTypeRequiredDescription
exchangesstringComma-separated exchange filter.

Tier behavior

  • Dev: Top 200 symbols only.
  • Pro: Full symbol list.

Example request

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

Example response

json
{
  "timestamp": "2026-06-08 06:00:00",
  "symbols": [
    {
      "rank": 1,
      "symbol": "BTC",
      "price_usd": 71200,
      "price_24h_change_pct": 3.2,
      "volume_24h_usd": 28400000000,
      "volume_24h_change_pct": 14.2,
      "oi_usd": 38400000000,
      "oi_24h_change_pct": 2.4,
      "top_funding_bps": 1.23,
      "top_funding_exchange": "binance",
      "liquidation_24h_usd": 207000000
    },
    {
      "rank": 2,
      "symbol": "ETH",
      "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
    }
  ]
}

Related