Getting started
Rate limits
Quotas are per account, not per key. Creating or replacing a key does not give you more requests.
Plans
| Plan | Daily requests |
|---|---|
| Free | 100 / day |
| Paid — monthly / 3 / 6 / yearly | 1,000 / day (same quota; duration changes price) |
Your live remaining count is on the Dashboard. Admins can adjust limits under Users & limits.
Response headers
X-RateLimit-Limit: 1000 X-RateLimit-Remaining: 982 X-RateLimit-Reset: 2026-09-23T00:00:00.000Z
Over limit
HTTP 429 with body like:
{
"error": "rate_limit_exceeded",
"message": "Daily rate limit of 1000 requests exceeded. …",
"limit": 1000,
"resetAt": "…"
}Caching tip
Prefer /fixtures and /results when you can — they are cached server-side. Avoid polling match lists every second; reuse responses and watch X-RateLimit-Remaining.