Documentation Index
Fetch the complete documentation index at: https://apidocs.scripe.io/llms.txt
Use this file to discover all available pages before exploring further.
rate_limited
| HTTP | When |
|---|---|
| 429 | The workspace exceeded the bucket’s sliding 60-second window. |
Retry-After is in seconds. Sleep at least that long, then retry.
Limits are per workspace, not per key — adding more keys for the
same workspace doesn’t increase your budget. See
conventions.md §rate-limits for the
bucket sizes.
To avoid 429s in steady-state traffic:
- Pre-throttle. Watch
X-RateLimit-Remainingand slow yourself down before you hit zero. - Batch where possible. Use the largest reasonable
limit(up to 200) on list endpoints to halve the number of requests. - Cache aggressively for read-heavy paths. Most
/v1/projectsresponses are stable enough to cache for a few minutes in your client.