Skip to main content
Verisoul implements rate limiting to ensure service stability and availability for all customers.

Default Limits

By default, each project has the following rate limit: 900 requests per minute. This limit applies across all API endpoints for that project. When you exceed this limit, API requests return a 429 Too Many Requests HTTP status code.

How Rate Limiting Works

Rate limits are tracked per project across three windows. Every request must pass all three: Your allowed requests are counted over a sliding window (the last N seconds), not a fixed clock minute that resets at :00.

Burstiness

Each short window allows more traffic than a perfectly even rate would. That headroom is the burst factor: So you can send traffic in bursts, but not dump your entire minute quota at once.

Soft limit near the ceiling

For the 6-second and 60-second windows, there is a soft zone above the limit (about 1.3×). In that zone, requests are increasingly likely to be rejected. Past the hard ceiling, all requests are rejected. If a request is rate limited, the response includes: Example response body:
Space retries using the Retry-After header rather than immediately retrying. Immediate retries are more likely to stay rate limited.

Increasing Your Rate Limits

If you require higher rate limits for your application, please contact us: When requesting increased limits, please provide:
  • The project_id you are requesting a higher rate limit for
  • The new rate limit you’re requesting
  • Justification for the increased limit (expected traffic volume, use case, etc.)
Typically rate limit increases are only approved for enterprise customers. Our team will review your request and adjust your rate limits accordingly.