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:

HeaderDescription
X-RateLimit-LimitNumber of allowed requests
X-RateLimit-RemainingNumber of requests remaining in current interval
X-RateLimit-ResetTimestamp when interval resets