GET /tickers
Aggregator Compatibility
GET /tickers
24-hour pricing and volume statistics for every active trading pair.
GET
GET /tickers
Description
Returns an array of ticker objects, one per active trading pair. Pairs with zero 24-hour volume or empty order books are excluded. Use this endpoint to render market overviews, populate trading-pair selectors, or feed downstream pipelines.Parameters
This endpoint takes no query parameters.Response
Array of ticker objects.Pair identifier with
_ separator. Format {base}_{target}. See ticker_id format.Base asset symbol (e.g.
BTC, AAVE, TRX).Target (quote) asset symbol (e.g.
USDT, BTC).Last traded price of one base unit, denominated in target. So for
AAVE_USDT with last_price=97.44, one AAVE last traded for 97.44 USDT.Rolling 24-hour single-sided trading volume in base units.
Rolling 24-hour single-sided trading volume in target units.
Current highest bid price.
Current lowest ask price.
Rolling 24-hour highest traded price.
Rolling 24-hour lowest traded price.
Example request
Example response
Notes
- Pairs are sorted alphabetically by
ticker_id. - 24-hour volumes are single-sided (do not double-count the same trade).
last_price = Xalways means: 1 base = X target.- The data is updated every few seconds; cache for at least 5 seconds on your side.
Related
Order book for one pair
Detailed bid/ask depth for a specific ticker_id.
Recent trades
Completed trades for a specific ticker_id.
