Rate limiting
The API enforces rate limits to ensure fair usage and service stability.
Limits
- 100 requests per minute per API token
Exceeding the limit
If you exceed the rate limit, you will receive a 429 Too Many Requests response. When this happens:
- Implement exponential backoff in your client
- Consider caching responses that don't change frequently
Best practices
- Cache responses where possible
- Use pagination to reduce the number of requests
- Avoid polling - use reasonable intervals between requests