Rate Limits
The Add-on API limits the number of calls to its endpoints to keep the system load manageable.
Rate Limit Headers
Every API response includes the following rate limit-related headers:
Header Parameter | Value | Description |
---|---|---|
X-RateLimit-Limit | 100 | The total amount of requests that can be made to the endpoint. |
X-RateLimit-Remaining | X-RateLimit-Limit - attempts | The remaining amount of requests, which can be made to the endpoint. |
Response Example
The response for an exceeded rate limit is as follows:
{
"message": "The request rate limit exceeded. Please try again later. (10429:65df1181a72484.73772761)",
"errors": []
}