Rate Limits
To ensure good performance and availability of the API for all users, rate limiting is applied per customer.
If the current rate limit has been exceeded, the API will return an HTTP status code 429 Too Many Requests
.
The actual limits vary per API and SLA level, please see the response headers for current values if a rate limit occurs.
The response headers of a API request show your current rate limit status:
HEADER | DESCRIPTION |
---|---|
X-Rate-Limit-Limit | The maximum number of requests you're permitted to make per hour. |
X-Rate-Limit-Remaining | The number of requests remaining in the current rate limit window. |
X-Rate-Limit-Reset | The time in milliseconds when the current rate limit window resets. |
Example
Status: 429 Too Many Requests
X-Rate-Limit-Limit: 10000
X-Rate-Limit-Remaining: 0
X-Rate-Limit-Reset: 600000 (in milliseconds)
Please wait until the rate limit resets before making additional requests.