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

PlanRequests / minute
Basic60
Pro300
Agency1,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).

Was this article helpful?