Rate Limiting

Rate Limiting

We implement rate limiting to preserve the stability of our API. The rate limiter permits a maximum of 300 requests per minute.

Any requests surpassing this threshold will yield a 429 Too Many Requests error.

Additionally, our server responses incorporate headers indicating your API limit, the number of remaining requests, and the seconds until the limit is reset.

...
Response Headers

x-request-id: 6998977e-ee84-4729-821c-ceba9c0434a0

Retry-After: 360
x-ratelimit-limit: 300
x-ratelimit-remaining: 280
x-ratelimit-reset: 53