Rate limits define the maximum number of API requests a user can consume within a specific timeframe, such as per minute.
Developers must design applications to handle these limits gracefully, using techniques like request batching, caching, and exponential backoff.
If you are using our official SDKs, it will handle these details for you.
HTTP status code 429 indicates Too Many Requests, it means that you hit the rate limit.
When you receive a 429 status, you should respect the rate limit by waiting before sending more requests. The API server may also include a ratelimit-reset header to specify how long you should wait before making another request.