Verifa enforces two types of limits: rate limits (requests per minute) and product quotas (resource creation per minute).
Product quotas limit how quickly you can create specific resources:
Every API response includes rate limit headers:
When a product quota applies, additional headers are included:
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.
A few endpoints sit outside the per-plan request bucket and have dedicated limits:
These limits also return 429 Too Many Requests with a Retry-After header.