Rate Limits

API usage is rate-limited based on your subscription tier.

Limits by Tier

TierRequest LimitReset Period
Free100 requestsMonthly
Pro2,000 requestsMonthly
Business10,000 requestsMonthly

Rate Limit Headers

Every API response includes headers to help you track your usage:

HeaderDescription
X-RateLimit-LimitMaximum requests permitted per month
X-RateLimit-RemainingRequests remaining in current window
X-RateLimit-ResetTime when rate limit resets (UTC ISO 8601)

Example Headers

X-RateLimit-Limit: 100
X-RateLimit-Remaining: 84
X-RateLimit-Reset: 2024-02-01T00:00:00.000Z

Handling Rate Limits

When you exceed your rate limit, the API returns a 429 Too Many Requests response.

Best Practices

  • • Monitor the X-RateLimit-Remaining header
  • • Implement exponential backoff for retries
  • • Cache responses when possible
  • • Upgrade your tier if you consistently hit limits