urlyze docs

Rate limits & quotas

Two independent mechanisms protect the platform: short-window rate limits on requests, and monthly scan quotas per workspace plan.

Rate limits

Requests are limited per API key (per IP when anonymous) over a sliding window. When you exceed a limit the API responds 429 Too Many Requests with a Retry-After header (seconds). Back off and retry after that delay.

Your effective per-minute limit is visible at any time via GET /api/usage (rateLimitPerMinute).

Scan quotas

Each workspace plan includes a monthly scan quota. Two things are worth knowing:

curl https://api.urlyze.io/api/usage -H "X-Api-Key: YOUR_API_KEY"

{
  "tier": "Pro",
  "scansThisMonth": 412,
  "monthlyScanQuota": 5000,
  "rateLimitPerMinute": 60,
  ...
}
Exact per-plan numbers are shown in your dashboard and on GET /api/usage. Contact info@urlyze.io for higher limits.

Being a good citizen