TradePortfolio

Exchanges Snapshot

Dev

GET /rwa/exchanges/snapshot


Current RWA aggregates per exchange — total OI and 24h volume for RWA-classified symbols only, with 24h changes and symbol count. Returns one row per exchange that lists any RWA symbols. Use it to compare how different exchanges are positioned in real-world asset derivatives, or build an RWA exchange leaderboard.

Authentication

Requires Dev tier or higher.

Parameters

Query parameters

NameTypeRequiredDescription
asset_classstringFilter by asset class, e.g. commodity.

Example request

bash
curl -H "X-Api-Key: lk_live_your_key_here" \
  https://api.loris.tools/rwa/exchanges/snapshot

Example response

json
{
  "timestamp": "2026-06-08 06:00:00",
  "exchanges": [
    {
      "exchange": "binance",
      "oi_usd": 1800000000,
      "volume_24h_usd": 3200000000,
      "rwa_symbol_count": 24,
      "oi_24h_change_pct": 2.8,
      "volume_24h_change_pct": 14.2
    },
    {
      "exchange": "bybit",
      "oi_usd": 920000000,
      "volume_24h_usd": 1600000000,
      "rwa_symbol_count": 18,
      "oi_24h_change_pct": 1.4,
      "volume_24h_change_pct": 9.8
    }
  ],
  "totals": {
    "oi_usd": 4200000000,
    "volume_24h_usd": 7800000000,
    "rwa_symbol_count": 87
  }
}

Related