Rate limits
How fast you can call the API, what happens when you hit the ceiling, and how to back off.
Updated May 18, 2026·3 min read
Per-key limits
| Field | Type | Description |
|---|---|---|
| Read | GET | 600 requests/minute, burst to 60 RPS. |
| Write | POST/PATCH/DELETE | 120 requests/minute, burst to 20 RPS. |
| Bulk | /bulk endpoints | 10 requests/minute, max 1000 items per call. |
Response headers
HTTP
X-RateLimit-Limit: 600
X-RateLimit-Remaining: 587
X-RateLimit-Reset: 1716045600When you exceed
A `429 Too Many Requests` is returned with a `Retry-After` header (seconds). Retry after that many seconds with the same request body — idempotency keys are honored.
Enterprise limits
Enterprise plans negotiate higher limits — talk to your CSM. The platform comfortably handles 10k RPS sustained per workspace.