We've implemented stricter API rate limiting to protect against abuse and ensure fair usage.
Rate limits
| Endpoint type | Limit |
|---|---|
| Authenticated API | 100 requests/min |
| Public endpoints | 30 requests/min |
| Webhook deliveries | 10 requests/min per project |
How it works
Limits are tracked per-IP for public endpoints and per-API-key for authenticated ones
Exceeding the limit returns
429 Too Many RequestsThe response includes a
Retry-Afterheader telling you when to try again
Response example
{
"error": "Rate limit exceeded",
"retryAfter": 23,
"limit": 100,
"remaining": 0
}Legitimate usage should never be affected. If you need higher limits for your use case, contact us about Enterprise plans.