Throttling
Overview
Throttling Limits
Throttling Behavior
429 Too Many Requests
response status code.Handling Throttling
429 Too Many Requests response
, it is important to handle this gracefully in your application. Here are some strategies:X-RateLimit-Remaining
and X-RateLimit-Limit
headers to track and manage your request rate more efficiently.Example Response
429 Too Many Requests
status code. Below is an example of such a response:{
"message": "Too many requests",
"code": "too_many_requests",
"trace_id": "a7772ecc-5ad2-4045-aa33-e09211ce2b5b"
}
Best Practices
By adhering to these guidelines and managing your request rate effectively, you can ensure smooth and uninterrupted use of the API.