Exchange Symbols
DevGET /oi/exchange-symbols
All symbols tracked for one exchange with their OI USD, percentage share of that exchange's total OI, and 24h/7d changes with sparklines. Use it to build a per-exchange symbol breakdown table, find which coins are driving OI on a given venue, or power the exchange detail pages of an OI tracker.
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/oi/exchange-symbols?exchange=binance"Example response
json
{
"exchange": "binance",
"symbols": [
{
"symbol": "BTC",
"oi_usd": 7200000000,
"percent_of_exchange": 0.396,
"change_24h": 2.1,
"change_7d": 5.4,
"sparkline_7d": [6800000000, 6900000000, 7000000000, 7050000000, 7100000000, 7150000000, 7200000000]
},
{
"symbol": "ETH",
"oi_usd": 3100000000,
"percent_of_exchange": 0.170,
"change_24h": -1.2,
"change_7d": 2.8,
"sparkline_7d": [2950000000, 3000000000, 3020000000, 3050000000, 3080000000, 3090000000, 3100000000]
}
],
"total": 312,
"total_exchange_oi": 18200000000
}Errors
400— Missing required parameter exchange.
For authentication errors (401) and rate limit responses (429), see Errors.