Our API has rate limits, which are as follows:
We have a general limit of 2 requests per second for PUT/POST/PATCH requests = 120 POST/|PUT/PATCH requests per minute.
The limit for GET requests is 800 per minute.
Any further requests will be aborted with error code 429 ("Too Many Requests") in response.
What happens when the limit is reached?
All requests that exceed the limit are answered with the error code 429.
The next request will not go through until the rate is below the limit.
There is no “retry”: Requests that have received a 429 error in response, ran into the void.
Comments
0 comments
Please sign in to leave a comment.