Skip to main content

Daily call limits

Every API key has a daily call limit based on its plan tier. The limit resets at midnight UTC.
PlanCalls / day
Free100
Starter1,000
Pro5,000
Business20,000
EnterpriseUnlimited

Checking your usage

GET /v1/usage
{
  "calls_used": 247,
  "daily_limit": 1000,
  "period_start": "2026-02-01T00:00:00Z"
}
daily_limit is -1 for Enterprise (unlimited).

Handling 429 responses

When you exceed your daily limit, the API returns 429:
{
  "error": "daily rate limit exceeded",
  "code": "rate_limited"
}
The limit resets at midnight UTC. Check your usage with GET /v1/usage to monitor consumption and upgrade your plan if needed.
If Redis (the rate limiter backend) is unavailable, the API fails open — requests are allowed through rather than blocked. This prevents Redis downtime from taking down your integration.