Exchange Distribution
DevGET /markets/exchange-distribution
Per-exchange rollup of key market metrics: symbol count, 24h volume USD and change, OI USD and change, volume-to-OI ratio, and 24h liquidations USD. Returns one row per exchange, making it easy to compare venues across all dimensions at once.
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/exchange-distributionExample response
json
{
"data": [
{
"exchange": "binance",
"symbol_count": 312,
"volume_24h_usd": 42800000000,
"volume_24h_change_pct": 12.4,
"oi_usd": 18200000000,
"oi_24h_change_pct": 2.1,
"oi_vol_ratio": 0.425,
"liquidation_24h_usd": 210000000
},
{
"exchange": "bybit",
"symbol_count": 287,
"volume_24h_usd": 18900000000,
"volume_24h_change_pct": 9.8,
"oi_usd": 9400000000,
"oi_24h_change_pct": 1.8,
"oi_vol_ratio": 0.497,
"liquidation_24h_usd": 98000000
}
]
}