Get Ticker Markets
Returns a list of tickers for a specific cryptocurrency across multiple exchanges.
Required
Required
- coinId: Coin identifier (the markets are returned for this coin).
Optional
Optional
- limit & skip: Control pagination.
Authorizations
API key required to access the endpoints. Generate one from your dashboard at https://openapi.coinstats.app and pass it in the X-API-KEY request header. Never expose your key in client-side code.
Query Parameters
Page number to retrieve (1-based indexing)
1
Number of items to return per page
20
Filter tickers by exchange name (case-insensitive exact match)
"Binance"
Filter by base currency symbol of the trading pair
"BTC"
Filter by quote currency symbol of the trading pair
"USDT"
Filter by unique coin identifier (e.g., "bitcoin" for BTC)
"bitcoin"
When true, returns only verified tickers with recent updates and no fake volume flags
false
Response
Get ticker market list
Pagination metadata including total count, page number, and limit
{
"page": 1,
"limit": 20,
"itemCount": 57072,
"pageCount": 2854,
"hasPreviousPage": false,
"hasNextPage": true
}Array of ticker market data for trading pairs
{
"_created_at": "2023-04-13T07:34:24.442Z",
"_updated_at": "2025-08-27T10:56:44.779Z",
"exchange": "BinanceFutures",
"from": "BTC",
"to": "USD",
"pair": "BTC/USD",
"price": 111014.4,
"pairPrice": 111014.4,
"volume": 1967687277427.2,
"pairVolume": 17724613
}