Rate Limits
API rate limit tiers, headers, and how to handle 429 responses gracefully.
3 min readAPI & Webhooks
Rate limits protect the API from abuse and ensure fair access for all users. Limits are applied per API key per minute.
Rate limit tiers
| Plan | Requests / minute |
|---|---|
| Basic | 60 |
| Pro | 300 |
| Agency | 1,000 |
Rate limit headers
Every API response includes these headers:
code
Handling 429 responses
code
If you consistently hit rate limits, consider batching requests (e.g. use POST /v1/leads/batch to create up to 100 leads in a single request).
Related articles
Was this article helpful?