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

# Random Quote

> Get a random anime quote

Returns a single randomly-selected quote. Great for bots, widgets, or daily quote features.

<Note>
  This is a **public endpoint** — no API key required! When called without a key, requests are rate-limited to **10/min and 100/day per IP**. Providing an API key grants your plan's higher limits.
</Note>

<ResponseExample>
  ```json 200 theme={null}
  {
    "status": "success",
    "data": {
      "id": "a1b2c3d4-...",
      "quote_text": "Whatever you lose, you'll find it again. But what you throw away you'll never get back.",
      "anime": { "id": "...", "name": "Fullmetal Alchemist: Brotherhood", "slug": "fullmetal-alchemist-brotherhood" },
      "character": { "id": "...", "name": "Khamrakh", "slug": "khamrakh", "role": "supporting" },
      "episode": null,
      "language": "en",
      "tags": ["wisdom", "loss"],
      "created_at": "2026-02-20T14:00:00Z"
    }
  }
  ```
</ResponseExample>
