TradePortfolio

Exchanges Summary

Dev

GET /volume/exchanges-summary


Exchange volume leaderboard with 24h and 7d changes, a 7-day sparkline per venue, and market share percentage. Returns a ranked table of every tracked exchange's 24h volume and trend. Use it to build an exchange hub page, track which venues are growing or losing activity, or identify the highest-volume exchanges for a particular time period.

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/volume/exchanges-summary

Example response

json
{
  "exchanges": [
    {
      "exchange": "binance",
      "total_volume_24h_usd": 42800000000,
      "symbol_count": 312,
      "top_symbol": "BTC",
      "change_24h": 12.4,
      "change_7d": 8.2,
      "sparkline_7d": [38000000000, 39000000000, 40000000000, 41000000000, 41500000000, 42000000000, 42800000000],
      "market_share": 0.333
    },
    {
      "exchange": "bybit",
      "total_volume_24h_usd": 18900000000,
      "symbol_count": 287,
      "top_symbol": "BTC",
      "change_24h": 9.8,
      "change_7d": 6.1,
      "sparkline_7d": [16000000000, 16800000000, 17200000000, 17800000000, 18000000000, 18400000000, 18900000000],
      "market_share": 0.147
    }
  ],
  "total": 43,
  "total_market_volume": 128500000000
}

Related