Default limits
Custom limits can be configured per account. Contact support if you need higher limits.
Rate limit headers
Every API response includes rate limit information in the headers:Handling rate limits
When you exceed the rate limit, the API returns a429 Too Many Requests response:
429:
Best practices
- Monitor headers. Check
X-RateLimit-Remainingproactively to avoid hitting limits. - Batch where possible. Use list endpoints with filters instead of fetching resources one by one.
- Cache responses. Cache GET responses on your side to reduce unnecessary API calls.
- Spread requests. Distribute API calls evenly over time instead of bursting.

