> ## 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.

# Introduction

> Anime Quotes API — a developer-friendly REST API serving curated anime quotes

# Welcome to Anime Quotes API

The Anime Quotes API provides programmatic access to a curated collection of anime quotes. Whether you're building a Discord bot, a mobile app, or a website widget — our API makes it easy to fetch quotes, filter by anime or character, and search by text.

## Features

* **10,000+ curated quotes** from hundreds of anime series
* **Full-text search** across all quotes
* **Filter by anime, character, tags, or language**
* **Random quote endpoint** for quick integrations
* **Cursor-based pagination** for reliable data traversal
* **Rate limit headers** on every response — never guess your quota

## Quick Example

```bash theme={null}
curl -H "X-API-Key: YOUR_KEY" \
  https://api.aniquotes.myproj.xyz/api/v1/quotes/random
```

```json theme={null}
{
  "status": "success",
  "data": {
    "id": "a1b2c3d4-...",
    "quote_text": "If you don't take risks, you can't create a future.",
    "anime": { "name": "One Piece", "slug": "one-piece" },
    "character": { "name": "Monkey D. Luffy", "slug": "monkey-d-luffy" },
    "tags": ["motivational", "adventure"]
  }
}
```

## Plans & Pricing

| Plan           | Rate Limit    | Monthly Quota   | Price      |
| -------------- | ------------- | --------------- | ---------- |
| **Free**       | 30 req/min    | 5,000/month     | \$0        |
| **Starter**    | 60 req/min    | 50,000/month    | \$4.99/mo  |
| **Pro**        | 200 req/min   | 500,000/month   | \$14.99/mo |
| **Enterprise** | 1,000 req/min | 5,000,000/month | \$49.99/mo |

<CardGroup cols={2}>
  <Card title="Quickstart" icon="rocket" href="/quickstart">
    Get your API key and make your first request in under 2 minutes.
  </Card>

  <Card title="API Reference" icon="code" href="/api-reference/quotes/list">
    Explore all available endpoints.
  </Card>
</CardGroup>
