Skip to main content
GET
/
api
/
tickers
GET /api/tickers
curl --request GET \
  --url https://public-api.binibit.com/api/tickers
{
  "timestamp": 123,
  "currencyPairCode": "<string>",
  "price": 123,
  "price24hAgo": 123,
  "priceChangePercentage24h": 123,
  "volume24h": 123,
  "bidPrice": 123,
  "askPrice": 123
}

Documentation Index

Fetch the complete documentation index at: https://docs.binibit.com/llms.txt

Use this file to discover all available pages before exploring further.

Description

Returns the current ticker — last price, 24h price change, 24h volume, best bid and ask — for one trading pair.

Parameters

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

Response

timestamp
integer
required
Last update time, Unix epoch in seconds.
currencyPairCode
string
required
Pair code, echoed back.
price
decimal
required
Last traded price (one base unit in target currency).
price24hAgo
decimal
required
Price 24 hours before the current timestamp.
priceChangePercentage24h
decimal
required
Percentage change of price vs price24hAgo.
volume24h
decimal
required
24-hour trading volume in base currency.
bidPrice
decimal
required
Current highest bid.
askPrice
decimal
required
Current lowest ask.

Example request

curl "https://public-api.binibit.com/api/tickers?currencyPairCode=ETH_BTC"

Example response

{
  "timestamp": 1777458497,
  "currencyPairCode": "ETH_BTC",
  "price": 0.03027857,
  "price24hAgo": 0.02972996,
  "priceChangePercentage24h": 1.2561641096159775593971696400,
  "volume24h": 2.53540593,
  "bidPrice": 0.02981188,
  "askPrice": 0.0304212
}

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.