Skip to main content

Documentation Index

Fetch the complete documentation index at: https://docs.aniquotes.myproj.xyz/llms.txt

Use this file to discover all available pages before exploring further.

Rate Limiting

Every API request is subject to two limits:
  1. Per-minute rate limit — prevents burst abuse
  2. Monthly quota — total requests allowed per billing period

Rate Limits by Plan

PlanRequests/MinuteMonthly Quota
Free305,000
Starter6050,000
Pro200500,000
Enterprise1,0005,000,000

Response Headers

Every API response includes rate limit headers:
X-RateLimit-Limit: 60
X-RateLimit-Remaining: 42
X-RateLimit-Reset: 1714564860
X-Monthly-Quota-Limit: 50000
X-Monthly-Quota-Remaining: 47823

Handling 429 Responses

When rate-limited, the API returns a 429 Too Many Requests response with a Retry-After header:
{
  "status": "error",
  "error": {
    "code": "RATE_LIMIT_EXCEEDED",
    "message": "You have exceeded your rate limit of 60 requests per minute.",
    "details": {
      "limit": 60,
      "reset_at": "2026-05-01T12:01:00Z"
    }
  }
}
Best practice: Check the X-RateLimit-Remaining header and implement backoff before hitting the limit.