APIs

Rate Limiting

Our API enforces rate limiting to ensure fair usage and optimal performance. The current rate limit is 50 requests per minute per API token.

If you exceed this limit, you will receive a 429 Too Many Requests response. To avoid being rate-limited:

  • Implement request queuing or throttling in your application.
  • Monitor your API usage to ensure it stays within the limit.

Rate-Limiting Response Headers

Each API response includes the following headers to help you monitor your usage:

  • x-ratelimit-limit: The maximum number of requests allowed within the time window (e.g., 50).
  • x-ratelimit-remaining: The number of requests remaining in the current time window.

Example Response Headers

x-ratelimit-limit: 50 x-ratelimit-remaining: 10