TradePortfolio
DocsQuickstart

Quickstart

The Loris Tools API gives you crypto derivatives data — funding rates, open interest, liquidations, and market snapshots — across 43 venues, including 32 DEXes. It's the same data that powers loris.tools.


Get an API key

Sign up at loris.tools, then go to /account/api-keys and click Create key. The free tier works without a credit card and gives you live BTC and ETH data across all 43 venues.

Make your first call

Pass your key in the X-Api-Key header:

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

Response

You'll get a JSON object with funding rates keyed exchange-first, then symbol. On the free tier only BTC and ETH are returned. All values are 8-hour-normalized basis points (bps) — divide by 10,000 to get the raw decimal rate.

json
{
  "symbols": ["BTC", "ETH"],
  "funding_rates": {
    "binance": { "BTC": 1.23, "ETH": -0.45 },
    "bybit":   { "BTC": 1.19, "ETH": -0.41 },
    "hyperliquid": { "BTC": 0.87, "ETH": -0.38 }
    // ... 40 more venues on Dev and higher
  },
  "funding_rates_raw": {
    "binance": { "BTC": "0.00000123" }
  },
  "funding_intervals": {
    "binance": { "BTC": 8 },
    "hyperliquid": { "BTC": 1 }
  },
  "oi_rankings": { "BTC": 1, "ETH": 2 },
  "timestamp": "2026-06-08 06:00:00"
}

funding_intervals is the venue's native settlement interval in hours. Rates are already normalized to 8h equivalents regardless.

Historical data and backtesting

For time-series charts use GET /funding/historical.

What's next