How can I retrieve more than 100 items in a single API response?
By default, CoinAPI limits responses to 100 items per request. However, you can increase this by using the limit
query parameter.
- The maximum value for
limit
is 100,000 items - If you request more than 100 items, every 100 items counts as one request toward your usage quota
Example:
GET /v1/trades/history?limit=500
This call will return up to 500 trades and count as 5 requests in your quota.
Use this option when you need to retrieve large result sets efficiently, but be mindful of your daily request limits.
Was this section helpful?