Rate Limiting

Rate limiting of the API is based on user authentication token and apply to any authenticated calls. Rate limits are divided into 60 seconds intervals. Within each 60 second interval, we allow 100 requests to be performed

Once a limit has been exceeded the API will return an HTTP 429 response code. The following HTTP Headers will be provided on all requests:

Header

Description

X-RateLimit-Limit

Number of allowed requests

X-RateLimit-Remaining

Number of requests remaining in current interval

X-RateLimit-Reset

Timestamp when interval resets