Skip to Content
API ReferenceRate Limits

Rate Limits

To ensure the stability and availability of the Voice213 API, we enforce rate limits on all requests.

How rate limits work

Rate limits are usually measured across three dimensions:

  • Requests per minute (RPM)
  • Requests per day (RPD)

Your usage is evaluated against each limit, and exceeding any of them will trigger a rate limit error. For example, if your RPM limit is 20, making 21 requests within a minute will result in an error, even if you haven’t exceeded your RPD or other limits.

Limits

PlanRPMConcurrent RequestsMax TextRPD
Starter505500 words200
Pro25010800 words500
Business600201000 words1000
Business PlusContact usContact usContact usContact us

Headers

The API includes headers in the response to help you track your usage:

  • X-RateLimit-Limit: The maximum number of requests allowed in the current window.
  • X-RateLimit-Remaining: The number of requests remaining in the current window.
  • X-RateLimit-Reset: The time at which the current window resets (in UTC epoch seconds).

Exceeding Limits

If you exceed the rate limit, the API will return a 429 Too Many Requests response.

{ "error": "Too Many Requests", "message": "You have exceeded your rate limit. Please try again later." }
Last updated on