Rate Limiting
Verifa enforces two types of limits: rate limits (requests per minute) and product quotas (resource creation per minute).
Rate limits by plan
Product quotas
Product quotas limit how quickly you can create specific resources:
Daily verification limits
Response headers
Every API response includes rate limit headers:
When a product quota applies, additional headers are included:
Handling 429 responses
When you exceed a rate limit or quota, the API returns 429 Too Many Requests
with a Retry-After header indicating how many seconds to wait:
Best practice: Implement exponential backoff with jitter. Respect the
Retry-After header value as the minimum wait time before retrying.
Related
- Errors — Full error response reference including 429
- Authentication — API key types and plan tiers
- Idempotency — Safe retries with idempotency keys