Rate Limits

Rate Limits

The api is rate limited to prevent abuse and ensure stability.

The rate limit is dependent on your current plan and gives you a certain number of requests per minute. Requests can be made in parallel, but the total number of requests per minute must not exceed the limit.

For every request you make, you will receive the following rate limiting headers:

x-ratelimit-limit: 250
x-ratelimit-remaining: 249
x-ratelimit-reset: 1695661076
x-ratelimit-resetdate: Mon, 25 Sep 2023 16:57:56 GMT
  • x-ratelimit-limit - The maximum number of requests you can make per minute.
  • x-ratelimit-remaining - The number of requests remaining in the current rate limit window.
  • x-ratelimit-reset - The time at which the current rate limit window resets in epoch seconds.
  • x-ratelimit-resetdate - The time at which the current rate limit window resets.

When the rate limit is hit

If you exceed this limit, you will receive a 429 status code for your next request.

If the rate limit is hit, you will also receive a Retry-After header which indicates the number of seconds to wait before making another request.