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

# Daily Quote

> Get today's quote of the day

Returns a deterministic "quote of the day" that stays the same for all users throughout the current UTC day. Ideal for widgets, status pages, or daily digest emails.

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

The quote changes at **00:00 UTC** each day. Responses are cached server-side for performance.

<ResponseExample>
  ```json 200 theme={null}
  {
    "status": "success",
    "data": {
      "id": "f8e2a1c3-...",
      "quote_text": "People's lives don't end when they die. It ends when they lose faith.",
      "anime": { "id": "...", "name": "Naruto", "slug": "naruto" },
      "character": { "id": "...", "name": "Itachi Uchiha", "slug": "itachi-uchiha", "role": "supporting" },
      "episode": "339",
      "language": "en",
      "tags": ["philosophy", "death"],
      "created_at": "2026-01-15T08:00:00Z"
    }
  }
  ```
</ResponseExample>
