Rate Limits

API calls are limited by both a per-minute burst and an hourly quota. Limits are applied per API key.

60

Per-minute burst

Maximum requests per minute per key.

1.000

Hourly quota

Default request quota per hour per key.

Rate limit headers

Every response includes headers indicating the current limit status. Use them to track your remaining quota.

HTTP
X-RateLimit-Limit: 60
X-RateLimit-Remaining: 58
X-RateLimit-Reset: 1719763200
HeaderMeaning
X-RateLimit-LimitTotal requests allowed for the current window.
X-RateLimit-RemainingRequests remaining in the current window.
X-RateLimit-ResetWhen the limit resets (Unix epoch, seconds).
Retry-AfterOn a 429 response: seconds to wait before retrying.

When the limit is exceeded

If the limit is exceeded, the API returns 429 Too Many Requests with a Retry-After header indicating how long to wait. Your client should honor this header.

429
HTTP/1.1 429 Too Many Requests
Retry-After: 20

{
  "detail": "İstek limiti aşıldı, lütfen sonra tekrar deneyin"
}