Rate-Limited Endpoints
All write operations are rate-limited. This includes anyPOST, PATCH, or DELETE endpoints. GET endpoints are not rate-limited.
Write operations are rate-limited to 20 requests per minute.
Handling Rate Limits
When you exceed the rate limit, the API returns a 429 Too Many Requests status code. To handle rate limits effectively:- Monitor the rate limit headers to track your usage
- Implement exponential backoff when you receive a 429 response
- Space out your requests to stay within the limits
- Consider batching operations where possible to reduce the number of API calls