Skip to main content
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

string
required
Pair code in {base}_{target} format, e.g. ETH_BTC, TRX_USDT. See Currency pair codes.

Response

integer
required
Last update time, Unix epoch in seconds.
string
required
Pair code, echoed back.
decimal
required
Last traded price (one base unit in target currency).
decimal
required
Price 24 hours before the current timestamp.
decimal
required
Percentage change of price vs price24hAgo.
decimal
required
24-hour trading volume in base currency.
decimal
required
Current highest bid.
decimal
required
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/pairs and combine with this endpoint.
  • Aggregator-spec equivalent: see Aggregator Compatibility / tickers for the CoinGecko-format endpoint that returns all pairs in one call.
  • timestamp is in seconds, not milliseconds.