We have a strict rate limit policy to ensure the quality of service for all our users.

Rate Limit by Plan

The following table outlines the rate limits (requests per minute) for each plan:

PlanLimit
Free10 requests per minute
Launch150 requests per minute
Scale300 requests per minute
Pro300 requests per minute

Custom Rate Limits

Pro plan customers can purchase higher rate limits if the standard limits don’t meet their needs. If you require increased capacity, please contact our support team with details about your use case and expected request volume.

Custom rate limit packages are available starting at 500 requests per minute, with options for enterprise-level throughput based on your specific requirements.

Rate Limit Headers

When making API requests, the following headers are included in the response to help you track your rate limit usage:

HeaderDescriptionExample
x-rate-limit-limitThe maximum number of requests allowed in the current time window60
x-rate-limit-remainingThe number of requests remaining in the current time window54
x-rate-limit-resetThe Unix timestamp (in seconds) when the rate limit window resets1740405419

Example

x-rate-limit-limit: 60
x-rate-limit-remaining: 54
x-rate-limit-reset: 1740405419

You can use these headers to implement backoff strategies and avoid hitting rate limits in your applications.