Rate Limiting

One of the types of issues you may encounter is an HTTP 429 TooManyRequests response. This indicates that you have exceeded your allocated request limits, and you must retry the request.

All API requests are subject to per-user rate limiting. A fixed bucket of requests is allocated for each user.

In simple applications, when you receive an error of this type, simply wait for a short period of time and try the request again.

We allow you to process 60 API calls per session and per hour. Our webhooks avoid the use of so many requests. You need to wait for our notification and make a request.

Last updated