Rate limits

We recommend rate limiting your API requests to 120 requests per minute per API key regardless of the endpoint being called. This recommended rate limit is the same in both the Production and Sandbox environments. When throtting request, the API responds the following way:

{
    "errors": [
        {
            "status": 429,
            "title": "Too Many Requests",
            "code": "too_many_requests"
        }
    ]
}

Last updated