GET /v1/overview
Returns a comprehensive overview for one or more symbols — price, funding rates, open interest, and long/short ratios from all exchanges in one call. This is the primary endpoint for building symbol dashboards. Supports two modes:- Single symbol — Pass
?symbol=ETHfor a full breakdown of one asset - Top N — Omit
symboland use?top=20to get the top symbols ranked by total open interest
Query Parameters
Symbol to query (e.g.,
BTC, ETH). Omit to use top-N mode.Number of top symbols to return when
symbol is omitted. Ranked by total open interest (descending). Range: 1–100.Detail level for the response. Options:
summary— Aggregated averages and totals only (default)full— Includes per-exchange breakdowns for all data types
Single Symbol Response
detail=summary (default), the response omits per-exchange breakdowns:
Top N Response
detail=full, each symbol in the array includes per-exchange breakdowns (price_exchanges, funding_exchanges, oi_exchanges, ls_exchanges).
Response Fields
The queried symbol (single-symbol mode only).
Array of symbol overviews ranked by OI (top-N mode only).
Total number of tracked symbols (top-N mode only).
Average price across all exchanges. Returns 0 if no exchange has price data.
Per-exchange price data. Only present with
detail=full.Average funding rate across exchanges (8h normalized).
Per-exchange funding rates. Only present with
detail=full. See Funding Rates for field details.Aggregate open interest in USD.
Per-exchange OI. Only present with
detail=full. See Open Interest for field details.Average long/short ratio.
>1.0 = more longs, <1.0 = more shorts.Per-exchange L/S data. Only present with
detail=full. See Long/Short Ratio for field details.Caching
All overview responses are served from a 15-second pre-aggregated cache. The cache is rebuilt automatically on each poll cycle, so reads are fast and consistent regardless of the number of exchanges or symbols requested.Field Reference
| Field | Type | Description | Granularity | Example |
|---|---|---|---|---|
symbol | string | Queried base asset symbol | — | "ETH" |
price_avg | number | Simple average price across all reporting exchanges (USD) | ~30s aggregated | 3512.45 |
funding_avg | number | Mean 8h-normalized funding rate across exchanges (decimal) | ~30s aggregated | 0.0072 |
total_oi_usd | number | Aggregate open interest across all exchanges (USD) | ~30s aggregated | 8123456789.25 |
ls_ratio_avg | number | Mean long/short ratio. >1.0 = net long | ~30s aggregated | 1.15 |
price_exchanges.*.price | number | Last traded price on this exchange (USD) | ~30s per exchange | 3512.50 |
price_exchanges.*.volume_24h | number | 24h trading volume on this exchange (USD) | ~30s per exchange | 850000000.0 |
funding_exchanges.*.rate | number | 8h-normalized funding rate on this exchange | ~30s per exchange | 0.0080 |
oi_exchanges.*.oi_usd | number | Open interest on this exchange (USD) | ~30s per exchange | 3200000000.0 |

