TradePortfolio

Volume Symbols

Dev

GET /volume/symbols


Ranked leaderboard of all symbols tracked for 24h trading volume, sorted by total USD volume. Each entry includes 24h change percentage, exchange coverage count, and share of total market volume. Use it to find which coins are seeing the heaviest trading activity, spot momentum shifts, or seed a volume-sorted watchlist.

Authentication

Requires Dev tier or higher. Free tier does not have access (returns 403).

Parameters

This endpoint takes no parameters.

Example request

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

Example response

json
{
  "timestamp": "2026-06-08 06:00:00",
  "symbols": [
    {
      "rank": 1,
      "symbol": "BTC",
      "volume_24h_usd": 28400000000,
      "volume_24h_change_pct": 12.4,
      "exchange_count": 38,
      "share_of_total": 0.221
    },
    {
      "rank": 2,
      "symbol": "ETH",
      "volume_24h_usd": 14200000000,
      "volume_24h_change_pct": 8.7,
      "exchange_count": 36,
      "share_of_total": 0.110
    },
    {
      "rank": 3,
      "symbol": "SOL",
      "volume_24h_usd": 7800000000,
      "volume_24h_change_pct": 21.3,
      "exchange_count": 30,
      "share_of_total": 0.061
    }
  ]
}

Errors

  • 403 Free tier does not have access. Upgrade to Dev.

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

Related