TradePortfolio

Exchanges (All)

Pro

GET /markets/exchanges/all


Bulk fetch of every symbol-by-exchange market row in a single response — price, volume, OI, funding, and liquidations per (symbol, exchange) pair. Use it as a one-shot universe pull for cross-market dashboards instead of fanning out to many per-symbol or per-exchange calls.

Authentication

Requires Pro 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/markets/exchanges/all"

Example response

json
{
  "symbols": {
    "BTC": {
      "symbol": "BTC",
      "timestamp": "2026-06-08T19:00:00Z",
      "exchanges": [
        {
          "exchange": "binance",
          "price_usd": 71200.5,
          "price_24h_change_pct": 1.23,
          "volume_24h_usd": 1850000000,
          "oi_usd": 4200000000,
          "funding_current_bps": 0.5,
          "funding_avg_7d_bps": 0.8,
          "liquidation_24h_usd": 12000000
        },
        {
          "exchange": "bybit",
          "price_usd": 71198.0,
          "price_24h_change_pct": 1.21,
          "volume_24h_usd": 980000000,
          "oi_usd": 2100000000,
          "funding_current_bps": 0.6,
          "funding_avg_7d_bps": 0.9,
          "liquidation_24h_usd": 6500000
        }
      ]
    }
  }
}

Errors

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

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

Related