TradePortfolio

OI Metadata

Dev

GET /oi/metadata


Catalog of available exchanges and symbols derived from recent OI data. Returns exchange names with their symbol counts and the full symbol list. Designed for build-time use — generating static routes, populating sitemaps, and driving navigation without pulling full OI 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/oi/metadata

Example response

json
{
  "exchanges": {
    "exchange_names": [
      { "name": "binance", "symbol_count": 312 },
      { "name": "bybit", "symbol_count": 287 },
      { "name": "okx", "symbol_count": 241 }
    ]
  },
  "symbols": {
    "symbol_names": ["BTC", "ETH", "SOL", "DOGE", "XRP", "..."]
  }
}

Errors

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

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

Related