Skip to main content
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.
string
required
Pair identifier with _ separator. Format {base}_{target}. See ticker_id format.
string
required
Base asset symbol (e.g. BTC, AAVE, TRX).
string
required
Target (quote) asset symbol (e.g. USDT, BTC).
decimal
required
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.
decimal
required
Rolling 24-hour single-sided trading volume in base units.
decimal
required
Rolling 24-hour single-sided trading volume in target units.
decimal
Current highest bid price.
decimal
Current lowest ask price.
decimal
Rolling 24-hour highest traded price.
decimal
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 = X always means: 1 base = X target.
  • The data is updated every few seconds; cache for at least 5 seconds on your side.

Order book for one pair

Detailed bid/ask depth for a specific ticker_id.

Recent trades

Completed trades for a specific ticker_id.