GET /v2/tickers
Returns ticker snapshots from a specific exchange.Query Parameters
Exchange ID.
Filter by symbol.
Example
Response Fields
Last traded price (USD).
Best bid price.
Best ask price.
24h volume (USD).
24h price change (%).
Field Reference
| Field | Type | Description | Granularity | Example |
|---|---|---|---|---|
exchange | string | Exchange ID | — | "okx" |
symbol | string | Symbol in exchange-native format | — | "BTC-USDT-SWAP" |
last_price | number | Last traded price (USD) | ~30s per exchange | 71000.50 |
bid | number | null | Best bid price | ~30s per exchange | 71000.00 |
ask | number | null | Best ask price | ~30s per exchange | 71001.00 |
volume_24h | number | 24h trading volume (USD) | ~30s per exchange | 600000000.00 |
change_pct_24h | number | null | 24h price change (%). Null if exchange doesn’t provide | ~30s per exchange | 1.25 |
timestamp | integer | Unix ms when fetched | ~30s | 1709640000000 |
Data Sources
Ticker data from any exchange withhas_tickers: true in the registry. All 23 exchanges support tickers. Data polled every ~30 seconds.

