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
| Plan | RPM | Concurrent Requests | Max Text | RPD |
|---|---|---|---|---|
| Starter | 50 | 5 | 500 words | 200 |
| Pro | 250 | 10 | 800 words | 500 |
| Business | 600 | 20 | 1000 words | 1000 |
| Business Plus | Contact us | Contact us | Contact us | Contact 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