TradePortfolio

Exchanges

Dev

GET /markets/exchanges


Exchange list with stats and a 7-day volume sparkline. Returns one entry per supported exchange with 24h volume, OI, liquidations, and a week of daily volume for the sparkline. Use it to build an exchange directory or hub page that shows all venues at a glance.

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/markets/exchanges

Example response

json
{
  "timestamp": "2026-06-08 06:00:00",
  "exchanges": [
    {
      "exchange": "binance",
      "display": "Binance",
      "symbol_count": 312,
      "volume_24h_usd": 42800000000,
      "oi_usd": 18200000000,
      "liquidation_24h_usd": 210000000,
      "volume_7d_sparkline": [
        38000000000,
        39000000000,
        40500000000,
        41200000000,
        41800000000,
        42300000000,
        42800000000
      ]
    }
  ]
}

Related