GET /api/tickers
Market Data
GET /api/tickers
24-hour ticker information for a single trading pair.
GET
GET /api/tickers
Description
Returns the current ticker — last price, 24h price change, 24h volume, best bid and ask — for one trading pair.Parameters
Pair code in
{base}_{target} format, e.g. ETH_BTC, TRX_USDT. See Currency pair codes.Response
Last update time, Unix epoch in seconds.
Pair code, echoed back.
Last traded price (one base unit in target currency).
Price 24 hours before the current timestamp.
Percentage change of
price vs price24hAgo.24-hour trading volume in base currency.
Current highest bid.
Current lowest ask.
Example request
Example response
Notes
- This endpoint returns a single ticker for a specified pair. To list all pairs, use
GET /api/currencies/pairsand combine with this endpoint. - Aggregator-spec equivalent: see Aggregator Compatibility / tickers for the CoinGecko-format endpoint that returns all pairs in one call.
timestampis in seconds, not milliseconds.
