Skip to main content
MetaLink enforces two types of rate limits: per-minute and monthly.

Limits by Plan

PlanPer MinuteMonthly
Free1001,000
Starter30010,000
Growth60050,000
Business1,200200,000
Monthly limits are per user, not per key. If you have multiple API keys, they share the same monthly quota.

Rate Limit Headers

Every successful response includes these headers:
HeaderDescription
X-RateLimit-LimitMax requests per minute for your tier
X-RateLimit-RemainingRequests remaining in the current minute
X-RateLimit-ResetUnix timestamp when the minute window resets
X-Monthly-LimitMax requests per month for your tier
X-Monthly-UsedRequests used this month
X-Monthly-RemainingRequests remaining this month

When You Hit the Limit

If you exceed either limit, you’ll receive a 429 Too Many Requests response. Per-minute limit exceeded:
  • Response includes a Retry-After header (seconds until you can retry)
  • Wait the indicated time, then retry
Monthly limit exceeded:
  • Response includes X-Monthly-Reset header (ISO 8601 date-time, e.g., 2026-04-01T00:00:00Z)
  • Monthly counters reset on the 1st of each month at midnight UTC
  • Upgrade your plan for a higher limit