docs
UAEN
Docs/Limits & Rate Limiting

Limits & Rate Limiting

Rekognita API has restrictions on the number of requests and the volume of documents processed depending on your pricing plan.

Rate Limits

PlanRequests/minDocuments/dayMax File Size
Free105010 MB
Pro601,00050 MB
Business30010,000100 MB
EnterpriseCustomUnlimited500 MB

Rate Limit Headers

Every API response contains headers with limits information:

X-RateLimit-Limit: 60          # Max requests per window
X-RateLimit-Remaining: 45     # Remaining requests
X-RateLimit-Reset: 1705312800 # Reset Unix timestamp
Retry-After: 30               # Seconds until next request (on 429)

When the limit is exceeded

When the limit is exceeded, the API returns a 429 Too Many Requests status code:

{
  "error": {
    "code": "rate_limit_exceeded",
    "message": "You have exceeded the request limit. Try again in 30 seconds.",
    "retry_after": 30
  }
}
Recommendation: Implement exponential backoff using theRetry-After header. The Rekognita SDK does this automatically.

File Limits

ParameterLimit
Maximum pages per document500
Maximum files in one request10
Processing Timeout300 seconds
Maximum active tasks50 (Pro) / 200 (Business)

Increasing Limits

If you need higher limits, please contact our team: sales@rekognita.com. Enterprise plans have custom configurations.