too-many-requests
| Field | Value |
|---|---|
| Type URI | https://docs.kordiam.app/docs/errors/too-many-requests |
| HTTP Status | 429 Too Many Requests |
Description
The client has exceeded an allowed request rate. The server is throttling further requests.
Response Example
Code
Common Causes
- The request rate for the endpoint has been exceeded.
- The client sent a burst of requests faster than the deployment allows.
How to Fix
- Check the
Retry-Afterresponse header or theretryAfterresponse property to determine how long to wait before retrying. - Implement exponential backoff with jitter in your client to avoid bursts of requests.
- Reduce polling frequency or batch requests where the endpoint supports it.
Last modified on