Rate limits keep shared infrastructure healthy. Treat them as part of your design—not surprises—when you connect automation to external APIs or run fan-out jobs across many tenants.Documentation Index
Fetch the complete documentation index at: https://preflight-ee1e633f.mintlify.app/llms.txt
Use this file to discover all available pages before exploring further.
Defaults
Limits protect shared infrastructure. Burst allowances exist for short spikes, but sustained traffic above quota will throttle or fail requests—often with429 responses you must handle.
Headers
Many APIs returnRetry-After or rate-limit headers. Log them during integration testing so your backoff code respects server hints instead of guessing.
Strategies
- Batch work where possible—one request with twenty IDs beats twenty serial requests.
- Queue externally when needed so spikes flatten into steady throughput.
- Shed load with sampling under stress: process every Nth event until pressure drops.