Skip to main content

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:

HEADERDESCRIPTION
X-Rate-Limit-LimitThe maximum number of requests you're permitted to make per hour.
X-Rate-Limit-RemainingThe number of requests remaining in the current rate limit window.
X-Rate-Limit-ResetThe 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.