TradePortfolio

Funding Leaders

Dev

GET /markets/funding-leaders


The top 10 highest funding rate symbol×exchange pairs — the venues paying out the most to shorts, or charging longs the most. Useful for quickly finding the best funding arbitrage opportunities or identifying which markets are most overbought or oversold.

Authentication

Requires Dev tier or higher.

Parameters

Query parameters

NameTypeRequiredDescription
exchangesstringComma-separated exchange filter.

Example request

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

Example response

json
{
  "timestamp": "2026-06-08 06:00:00",
  "exchanges_filter": null,
  "data": [
    {
      "symbol": "PEPE",
      "exchange": "binance",
      "funding_current_bps": 8.45,
      "oi_rank": 42,
      "rank": 1
    },
    {
      "symbol": "DOGE",
      "exchange": "bybit",
      "funding_current_bps": 7.21,
      "oi_rank": 15,
      "rank": 2
    },
    {
      "symbol": "WIF",
      "exchange": "okx",
      "funding_current_bps": 6.88,
      "oi_rank": 28,
      "rank": 3
    }
  ]
}

Related