To keep the API fast and reliable for everyone, requests made with API credentials are rate limited per workspace.The limit#
| |
|---|
| Limit | 120 requests per minute |
| Scope | Your entire workspace with all API credentials combined |
| Window | Fixed 60-second window |
The limit applies to the workspace, not to each credential. Creating additional API credentials does not increase your limit.What happens when you exceed the limit#
Requests over the limit receive HTTP 429 Too Many Requests:HTTP/1.1 429 Too Many Requests
Retry-After: 42
X-RateLimit-Limit: 120
Content-Type: application/json
{
“error”: {
“message”: “Rate limit exceeded. Retry after 42 seconds.”
}
}
Retry-After — seconds until the current window resets. Wait at least this long before retrying.
X-RateLimit-Limit — your workspace's requests-per-minute limit.
If your use case genuinely needs more than 120 requests/minute, contact support. Modified at 2026-08-01 21:05:10