Skip to main content
GET
/
api
/
v1
/
quotes
/
daily
Daily Quote
curl --request GET \
  --url https://api.example.com/api/v1/quotes/daily
{
  "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"
  }
}

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.

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.
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.
The quote changes at 00:00 UTC each day. Responses are cached server-side for performance.
{
  "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"
  }
}