Exchange Symbols
DevGET /markets/exchanges/{exchange}/symbols
All symbols on one exchange with full market data rows — price, 24h change, volume, OI, funding rate, and liquidations — sorted by 24h volume. The per-exchange symbol table for a venue detail page.
Authentication
Requires Dev tier or higher.
Parameters
Path 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/markets/exchanges/binance/symbolsExample response
json
{
"exchange": "binance",
"timestamp": "2026-06-08 06:00:00",
"symbols": [
{
"symbol": "BTC",
"price_usd": 71200,
"price_24h_change_pct": 3.2,
"volume_24h_usd": 12800000000,
"oi_usd": 7200000000,
"funding_current_bps": 1.23,
"liquidation_24h_usd": 145000000
},
{
"symbol": "ETH",
"price_usd": 3820,
"price_24h_change_pct": 2.1,
"volume_24h_usd": 5600000000,
"oi_usd": 3100000000,
"funding_current_bps": -0.45,
"liquidation_24h_usd": 98000000
}
]
}Errors
404— Exchange snapshot not found. The exchange slug may be invalid or data may be temporarily unavailable.
For authentication errors (401) and rate limit responses (429), see Errors.