Reference
Rate Limits
Rate limits ensure cluster stability and prevent noisy-neighbor congestion. Limits apply at the workspace level across all active API keys.
| Plan Tier | Requests Per Minute (RPM) | Max Concurrency | Monthly Credit Quota |
|---|---|---|---|
| Free | 30 RPM | 2 concurrent | 500 |
| Starter | 120 RPM | 5 concurrent | 10,000 |
| Growth | 300 RPM | 15 concurrent | 50,000 |
| Enterprise | 1200 RPM | 50 concurrent | 250,000 |
Handling HTTP 429
When rate limits are breached, RenderNest responds with HTTP 429 Too Many Requests and a RATE_LIMITED error code. Client applications should implement exponential backoff with jitter before retrying.
{
"success": false,
"request_id": "req_1725432100_9f8e7d",
"error": {
"code": "RATE_LIMITED",
"message": "Rate limit of 120 RPM exceeded for workspace tier 'starter'. Please retry in a few seconds."
}
}