Default public API rate limit
| Scope | Limit | Window |
|---|---|---|
| Per IP (default) | 600 requests | 60 s |
/api/* routes that don’t have a stricter override. Implemented by api/_rate-limit.js / api/_ip-rate-limit.js.
MCP server
| Scope | Limit | Window |
|---|---|---|
| Per API key (MCP tools) | 60 requests | 60 s |
OAuth endpoints
| Endpoint | Limit | Window | Scope |
|---|---|---|---|
POST /api/oauth/register | 5 | 60 s | Per IP |
GET /api/oauth/authorize | 10 | 60 s | Per IP |
POST /api/oauth/token | 10 | 60 s | Per IP |
api/oauth/{register,authorize,token}.js.
Exceeding any of these during the OAuth flow will cause the MCP client to fail the connection handshake — wait 60 s and retry.
Write endpoints
| Endpoint | Limit | Window | Scope |
|---|---|---|---|
POST /api/scenario/v1/run | 10 | 60 s | Per user |
POST /api/scenario/v1/run (queue depth) | 100 in-flight | — | Global |
POST /api/register-interest | 5 | 60 min | Per IP + Turnstile |
POST /api/contact | 3 | 60 min | Per IP + Turnstile |
/api/brief/share-url, /api/notification-channels, /api/create-checkout, /api/customer-portal, etc.) fall back to the default per-IP limit above.
Bootstrap / health
These are cached aggressively and have no custom limit beyond the default:GET /api/bootstrap—s-maxage=30GET /api/health—s-maxage=15GET /api/version—s-maxage=60
Response when limited
HTTP 429 with:Retry guidance
- Respect
Retry-After. Don’t pound on a 429. - For batch work, pace yourself: at 600 req/min/IP the default gives you ~10 req/s headroom.
- For MCP, 60/min is generous for conversational use but tight for scripted batch fetches — prefer the REST API for batch.
- Spurious 429s often mean you’re sharing an egress IP (corporate proxy, CI runner). Contact support for a per-key limit bump if needed.
Hard caps (not soft limits)
- Webhook callback URLs must be HTTPS (except localhost).
api/downloadfile sizes capped at ~50 MB per request.POST /api/scenario/v1/runglobally pauses new jobs when the pending queue exceeds 100 — returns 429 withRetry-After: 30.api/v2/shipping/webhooksTTL is 30 days — re-register to extend.
