TradePortfolio

Funding Metadata

Dev

GET /funding/metadata


Lightweight catalog endpoint — returns the full list of available symbols and exchange names without any rate values. Use it to populate dropdowns, drive dynamic routing, or seed your own exchange and symbol registry without pulling the full rate payload. The Loris website calls this endpoint server-side for navigation and page generation.

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/funding/metadata

Example response

json
{
  "symbols": ["BTC", "ETH", "SOL", "DOGE", "..."],
  "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 to this endpoint.

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

Related