Rate limit¶
Rate Limit aims to control the rate of traffic or requests that a server receives. It is generally used to prevent a single client or group of clients from overloading the server with too many requests, which could disrupt the server's ability to respond to other clients in a timely manner.
Here are the rate limit definitions:
Production¶
GET: 2.000 requests per minute
POST: 1.000 requests per minute
PUT: 1.000 requests per minute
DELETE: 100 requests per minute
If a client exceeds these limits, the server will respond with a 429 - Too Many Request
error message. For more information, click here.