Se connecterCommencer gratuitement

Rate limits

Per-workspace, sliding 60-second window. Every response carries X-RateLimit-* headers so you never have to guess your remaining quota.

1 min de lectureMis à jour le 31 mai 2026

Per-tier quotas (requests / minute)

Endpoint classFreeProUltraEntreprise
read (GET)1006003 00012 000
write (POST/PATCH/PUT/DELETE)303001 5006 000
expensive (audit list, exports)10603003 000

Quotas are counted per workspace, not per API key. Rotating or adding keys does not unlock more capacity — upgrade your plan, or split traffic across workspaces.

Response headers

HeaderMeaning
X-RateLimit-LimitQuota for your tier + endpoint class.
X-RateLimit-RemainingRequests left in the current 60-second window.
X-RateLimit-ResetEpoch seconds when the next minute bucket starts.
X-RateLimit-PolicyRFC 8941-style: 300;w=60.
Retry-AfterOnly on 429 responses. Seconds until next acceptable request.

Handling 429s

The official SDKs already retry on 429 with exponential backoff (5 attempts by default). If you handcraft requests, honour Retry-After and do not retry faster than that.

Burst tolerance

Internally each minute is a separate bucket and we sum the last 60 seconds. That tolerates short bursts at the boundary (you can hit roughly 2x your quota over a 1s window straddling two minutes) but capped on a true 60-second total.