TradePortfolio

Funding Symbols

Dev

GET /funding/symbols


Ranked list of symbols tracked for funding rates, sorted by exchange coverage count. Only symbols with at least one active exchange reporting a rate with non-zero OI or volume are included. Use it to discover which coins have the broadest multi-venue funding coverage, or to prioritize which symbols to monitor in a cross-venue carry strategy.

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/symbols

Example response

json
{
  "timestamp": "2026-06-08 06:00:00",
  "symbols": [
    { "symbol": "BTC", "exchange_count": 38 },
    { "symbol": "ETH", "exchange_count": 37 },
    { "symbol": "SOL", "exchange_count": 30 },
    { "symbol": "DOGE", "exchange_count": 25 }
  ]
}

Errors

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

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

Related