Rate limits
To ensure our platform remains available and performant for everyone, the API is rate-limited..
Request-based limits
Calls to the API are governed by request-based limits. This means you should consider the amount of requests, and at what time, the requests are made.
The current default for API limits is 3600 requests per hour (3600/h
)
Exceeding rate limits
When exceeding rate limits a 429 Too Many Requests
response is returned.
Avoiding rate limit errors
- optimize your application to only fetch data that your app needs.
- cache data that is used often by your application.
- regulate the rate of the requests for smoother distribution.
- include error handling code to prevent never-ending retrying of specific requests / actions.