Verto enforces rate limits per API key to ensure fair usage and platform stability.
1. Default limits Standard accounts: 100 requests per 10 seconds per API key. Burst limit: 200 requests over a 1-second window.
2. Rate limit headers in every response: X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset.
💡 Tip: Monitor X-RateLimit-Remaining in your client code. Back off before hitting a 429. |
3. When you exceed the rate limit, the API returns HTTP 429 Too Many Requests with a Retry-After header.
⚠️ Warning: Implement exponential back-off for 429 responses. |
4. Higher rate limits are available for high-volume integrations. Contact your account manager to request an increase.
Related articles:
