Due the substantial volume of requests we've received, we are adjusting the API rate for Public API to 100 requests per minute, allowing for over 4 million requests per month.

The increased capacity aims to accommodate the growing demand and ensure a smoother experience for our users.

In response to user feedback requesting reduced API payloads, we have introduced our /simple endpoints, offering simplified responses.

Additional simple endpoints will be released soon to further enhance user experience.

To ensure the consistent uptime and scalability of this API, we can only provide a maximum of 100 tickers in the responses for a specific exchange through the /exchanges/{id} endpoint.

{
  "name": "Binance",
  "year_established": 2017,
  ......
  "tickers": [...], //100 items πŸ‘ˆ
  "status_updates": [...] //7 items
}

To retrieve more tickers, kindly utilize /exchanges/{id}/tickers endpoint.

To ensure the consistent uptime and scalability of this API, we can only provide a maximum of 100 tickers in the responses across multiple exchanges through the /coins/{id} endpoint.

{
"id": "bitcoin",
"symbol": "btc",
......
"last_updated": "2024-02-05T03:45:46.327Z",
"tickers": [...] //100 items πŸ‘ˆ
}

To retrieve more tickers, kindly utilize /coins/{id}/tickers endpoint.