Exchange Symbols
DevGET /volume/exchange-symbols
Per-exchange symbol volume breakdown — every symbol on one exchange with its 24h USD volume, percentage share of that exchange's total, 24h/7d changes, a 7-day volume sparkline, and the 24h price change for each symbol. Use it to build the per-exchange symbol table page of a volume tracker, spot which coins are most active on a given venue, or find unusual volume concentration.
Authentication
Requires Dev tier or higher.
Parameters
Query parameters
| Name | Type | Required | Description |
|---|---|---|---|
exchange | string | ✓ | Lowercase exchange slug, e.g. binance. |
Example request
bash
curl -H "X-Api-Key: lk_live_your_key_here" \
"https://api.loris.tools/volume/exchange-symbols?exchange=binance"Example response
json
{
"exchange": "binance",
"symbols": [
{
"symbol": "BTC",
"volume_usd": 12800000000,
"percent_of_exchange": 0.299,
"change_24h": 14.2,
"change_7d": 9.8,
"sparkline_7d": [9800000000, 10200000000, 10800000000, 11200000000, 11800000000, 12200000000, 12800000000],
"price_change_24h": 3.2
},
{
"symbol": "ETH",
"volume_usd": 5600000000,
"percent_of_exchange": 0.131,
"change_24h": 8.7,
"change_7d": 5.4,
"sparkline_7d": [4800000000, 5000000000, 5100000000, 5200000000, 5300000000, 5450000000, 5600000000],
"price_change_24h": 2.1
}
],
"total": 312,
"total_exchange_volume": 42800000000
}Errors
400— Missing required parameter exchange.
For authentication errors (401) and rate limit responses (429), see Errors.