Skip to main content

Rate Limits

Flowxtra applies rate limiting to protect the platform and ensure fair usage.

Limits by Context

ContextLimitScope
API (authenticated)300 requests/minPer user
Auth endpoints120 requests/minPer IP
Login5 attempts/minPer IP
Tenant routes500 requests/minPer user
Public endpoints1000 requests/minPer IP

Rate Limit Headers

Every response includes rate limit information:

X-RateLimit-Limit: 300
X-RateLimit-Remaining: 297

Exceeding the Limit

When you exceed the rate limit, the API returns:

{
"message": "Too Many Attempts.",
"retry_after": 60
}

Status code: 429 Too Many Requests

Wait the retry_after seconds before making another request.