TradePortfolio

Volume Metadata

Dev

GET /volume/metadata


Catalog of available exchanges and symbols derived from recent volume data, including exchange display names and funding intervals. Designed for build-time use — generating static routes, populating sitemaps, and seeding navigation dropdowns without pulling full volume payloads.

Authentication

Requires Dev tier or higher. Free tier does not have access (returns 403). The Loris website calls this endpoint server-side for static generation and sitemap building.

Parameters

This endpoint takes no parameters.

Example request

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

Example response

json
{
  "symbols": ["BTC", "ETH", "SOL", "DOGE", "XRP", "..."],
  "exchanges": {
    "exchange_names": [
      { "name": "binance", "display": "Binance", "interval": 8 },
      { "name": "bybit", "display": "Bybit", "interval": 8 },
      { "name": "okx", "display": "OKX", "interval": 8 }
    ],
    "exchanges": ["binance", "bybit", "okx", "..."]
  },
  "timestamp": "2026-06-08 06:00:00"
}

Errors

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

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

Related