Rate limiting

How to avoid and resolve HTTP 429 Too Many Requests

Limits

This API apply various rate limits depending on the type of HTTP request or GraphQL query being executed, as well as the number of such requests. The rate-limiting mechanism is quite dynamic and is based on the IP address(es), error rates, HTTP headers, and the GraphQL queries.

We do not share the exact limits because their nature is complex and against our security policy. However, it's nearly impossible to reach the limits if your requests are properly formed.

When one of the numerous limits exceeds the API typically responds with

  1. the HTTP status 429

  2. the HTTP header:

    Retry-After: 59
  3. and a JSON body:

    {
      success: false,
      code: "TOO_MANY_REQUESTS",
      message: "Retry after 1 min",
      retrySecs: 59
    }

Common cases

Here are the common situations when you might get yourself temporarily blocked:

  • When your requests produce numerous errors, e.g. malformed header, JSON body, or a GraphQL query.

  • When you send too many requests without a valid Authorization header.

  • When you send too many requests within a very short period.

How to unblock if you see HTTP 429 responses

Please contact our support team via the established communication channels. We will manually reset the counters for you.

Last updated

Was this helpful?