API rate limits and quotas
Understand the API rate limits that apply to your plan, and what to do if you hit them.
Was this helpful?
Understand the API rate limits that apply to your plan, and what to do if you hit them.
Rate limits protect platform stability and ensure fair usage across all customers. If you're building an integration or automation on top of our API, it's worth understanding how they work.
Free
60
1,000
Pro
300
10,000
Business
1,000
100,000
Enterprise
Custom
Custom
Every API response includes headers showing your current usage:
X-RateLimit-Limit: 300
X-RateLimit-Remaining: 241
X-RateLimit-Reset: 1714560000X-RateLimit-Reset is a Unix timestamp indicating when your limit resets.
Requests that exceed the rate limit receive a 429 Too Many Requests response. Your client should back off and retry after the time indicated in the Retry-After header.
Repeatedly hammering the API after receiving a 429 may result in a temporary ban on your API key. Always implement exponential backoff in your integration.
If your use case requires higher limits, upgrading your plan is the first step. For Enterprise-level requirements, contact us to discuss custom quotas.
Was this helpful?
Was this helpful?