TradePortfolio

Exchange Snapshots (All)

Dev

GET /funding/exchange-snapshots/all


Bulk fetch of current funding rate snapshots for all 43 supported exchanges in a single response. Equivalent to calling /funding/historical-by-exchange?mode=snapshot for each exchange individually, but batched into one request. Useful for one-shot universe scans and reducing round-trip overhead versus many parallel per-exchange calls.

Authentication

Requires Dev tier or higher.

Parameters

This endpoint takes no parameters.

Example request

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

Example response

json
{
  "exchanges": {
    "binance": {
      "exchange": "binance",
      "symbols": ["BTC", "ETH", "SOL"],
      "mode": "snapshot",
      "current_rates": {
        "BTC": 0.00005,
        "ETH": 0.00012,
        "SOL": -0.00003
      },
      "data": [],
      "notices": []
    },
    "bybit": {
      "exchange": "bybit",
      "symbols": ["BTC", "ETH"],
      "mode": "snapshot",
      "current_rates": {
        "BTC": 0.00006,
        "ETH": 0.00011
      },
      "data": [],
      "notices": []
    }
  }
}

Errors

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

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

Related