TradePortfolio

Quickstart

The Loris Tools API gives you crypto derivatives data — funding rates, open interest, liquidations, and order book data — 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 keyed by symbol, with per-venue funding data nested inside. On the free tier, only BTC and ETH are returned:

json
{
  "BTC": {
    "binance": {
      "rate": 0.0001,
      "rate_8h": 0.0001,
      "next_funding_time": 1749340800000,
      "symbol": "BTCUSDT"
    },
    "hyperliquid": {
      "rate": 0.000087,
      "rate_8h": 0.000087,
      "next_funding_time": 1749340800000,
      "symbol": "BTC"
    }
    // ... 41 more venues
  },
  "ETH": {
    "binance": { "rate": 0.000065, "rate_8h": 0.000065, ... },
    // ...
  }
  // ... 1,900+ more symbols on Dev and higher
}

All rates are 8-hour equivalents regardless of the venue's native funding interval.

What's next