Symbol Exchanges
FreeGET /markets/{symbol}/exchanges
Full per-exchange market rows for one symbol — price, volume, OI, funding rate, and 24h liquidations — from every exchange that lists it. Use it to compare execution conditions across venues, find divergences between exchanges, or build the per-symbol exchange table page of a crypto analytics dashboard.
Authentication
Available on all tiers. Free tier: BTC and ETH only — requests for other symbols return 403. Dev and above: all symbols.
Parameters
Path parameters
| Name | Type | Required | Description |
|---|---|---|---|
symbol | string | ✓ | Base symbol, e.g. BTC. |
Tier behavior
- Free: BTC and ETH only. Requests for any other symbol return 403 with required_tier: dev.
- Dev: All symbols.
Example request
bash
curl -H "X-Api-Key: lk_live_your_key_here" \
https://api.loris.tools/markets/BTC/exchangesExample response
json
{
"symbol": "BTC",
"timestamp": "2026-06-08 06:00:00",
"exchanges": [
{
"exchange": "binance",
"price_usd": 71200,
"price_24h_change_pct": 3.2,
"volume_24h_usd": 12800000000,
"oi_usd": 7200000000,
"funding_current_bps": 1.23,
"funding_avg_7d_bps": 1.18,
"liquidation_24h_usd": 145000000
},
{
"exchange": "bybit",
"price_usd": 71195,
"price_24h_change_pct": 3.1,
"volume_24h_usd": 5400000000,
"oi_usd": 3100000000,
"funding_current_bps": 1.19,
"funding_avg_7d_bps": 1.15,
"liquidation_24h_usd": 62000000
}
]
}Errors
403— Free tier requesting a symbol other than BTC or ETH. Upgrade to Dev.404— Symbol not found in Redis snapshot.
For authentication errors (401) and rate limit responses (429), see Errors.