Skip to main content
GET
/
api
/
marketdata
/
getcoingecko
/
tickers
GET /tickers
curl --request GET \
  --url https://internal-api.binibit.com/api/marketdata/getcoingecko/tickers
{
  "ticker_id": "<string>",
  "base_currency": "<string>",
  "target_currency": "<string>",
  "last_price": 123,
  "base_volume": 123,
  "target_volume": 123,
  "bid": 123,
  "ask": 123,
  "high": 123,
  "low": 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 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.
ticker_id
string
required
Pair identifier with _ separator. Format {base}_{target}. See ticker_id format.
base_currency
string
required
Base asset symbol (e.g. BTC, AAVE, TRX).
target_currency
string
required
Target (quote) asset symbol (e.g. USDT, BTC).
last_price
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.
base_volume
decimal
required
Rolling 24-hour single-sided trading volume in base units.
target_volume
decimal
required
Rolling 24-hour single-sided trading volume in target units.
bid
decimal
Current highest bid price.
ask
decimal
Current lowest ask price.
high
decimal
Rolling 24-hour highest traded price.
low
decimal
Rolling 24-hour lowest traded price.

Example request

curl https://internal-api.binibit.com/api/marketdata/getcoingecko/tickers

Example response

[
  {
    "ticker_id": "AAVE_USDT",
    "base_currency": "AAVE",
    "target_currency": "USDT",
    "last_price": 97.44082251,
    "base_volume": 471.47,
    "target_volume": 45745.01365308,
    "bid": 95.56435644,
    "ask": 97.4953,
    "high": 98.7275,
    "low": 94.56459456
  },
  {
    "ticker_id": "TRX_USDT",
    "base_currency": "TRX",
    "target_currency": "USDT",
    "last_price": 0.32384459,
    "base_volume": 9900.94,
    "target_volume": 3214.01946855,
    "bid": 0.32041584,
    "ask": 0.3261391,
    "high": 0.3290000,
    "low": 0.3180000
  }
]

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.