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

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 single randomly-selected quote. Great for bots, widgets, or daily quote features.
{
  "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"
  }
}