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.
Base asset symbol (e.g. BTC, AAVE, TRX).
Target (quote) asset symbol (e.g. USDT, BTC).
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.
Rolling 24-hour single-sided trading volume in base units.
Rolling 24-hour single-sided trading volume in target units.
Current highest bid price.
Current lowest ask price.
Rolling 24-hour highest traded price.
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.