Funding Rates
Free
GET /funding
Returns current normalized funding rates across all exchanges, alongside exchange metadata, OI rankings, and per-symbol funding intervals. All rates are 8-hour-normalized basis points, making cross-venue comparison straightforward regardless of each exchange's native settlement period. Use this endpoint as the primary feed for live funding dashboards, spread monitors, or any workflow that needs a full market snapshot in a single call.
Authentication
Available on all tiers. Free tier returns BTC and ETH only; all other symbols are server-side filtered. Dev and above receive all symbols across all 43 venues.
Parameters
Query parameters
| Name | Type | Required | Description |
|---|---|---|---|
nocache | string | – | Set to 1 to bypass the 60-second local Redis cache and fetch the latest data directly. |
Tier behavior
- Free: BTC and ETH only. All other symbols are filtered from the response server-side. All venues are included for those two symbols.
- Dev: Full access — all symbols across all 43 venues.
Example request
bash
curl -H "X-Api-Key: lk_live_your_key_here" \
https://api.loris.tools/fundingExample response
json
{
"symbols": ["BTC", "ETH", "SOL", "..."],
"exchanges": {
"exchange_names": [
{ "name": "binance", "display": "Binance", "interval": 8 },
{ "name": "bybit", "display": "Bybit", "interval": 8 }
],
"exchanges": ["binance", "bybit", "..."]
},
"funding_rates": {
"binance": { "BTC": 1.23, "ETH": -0.45, "SOL": 2.10 },
"bybit": { "BTC": 1.19, "ETH": -0.41 }
},
"funding_rates_raw": {
"binance": { "BTC": "0.00001000" }
},
"funding_intervals": {
"binance": { "BTC": 8 }
},
"oi_rankings": { "BTC": 1, "ETH": 2, "SOL": 3 },
"default_oi_rank": "500+",
"timestamp": "2026-06-08 06:00:00"
}