Rate limits
Per-project, per-route token buckets — and how to stay under them.
The numbers
Endpoint
Refill rate
Burst capacity
HTTP/1.1 429 Too Many Requests
Retry-After: 1
Content-Type: application/json
{ "error": "rate_limited", "retry_after_s": 1 }Why these numbers
How to stay under
Use the SDK
Backfill via /v1/batch
Spread across projects
Implementation note
Backoff strategy
See also
Last updated
Was this helpful?