Rate Limiting (API Design)
← Back to API Best Practices
Controlling the rate of requests clients can make. Token bucket, sliding window, and leaky bucket algorithms limit request rates to protect services from abuse and overload. Rate limit headers inform clients of their remaining quota.
Key Properties
Related
- API Authentication (per-client rate limits)