Rate Limits

PlanPer minutePer month
Pro60 requests10,000 requests
Advanced120 requests100,000 requests
EnterpriseCustomCustom

Rate limit headers

Every response includes rate limit headers:

X-RateLimit-Limit: 60
X-RateLimit-Remaining: 58
X-RateLimit-Reset: 1711632000

Handling 429 responses

When you exceed the rate limit, the API returns 429 Too Many Requests. Wait until the X-RateLimit-Reset timestamp before retrying. Use exponential backoff for retry logic.

Best practices

  • Cache responses where possible
  • Use pagination to reduce the number of requests
  • Batch operations instead of making individual calls
  • Monitor the X-RateLimit-Remaining header