Skip to main content
GET
/
api
/
v1
/
quotes
/
{quote_id}
Get Quote
curl --request GET \
  --url https://api.example.com/api/v1/quotes/{quote_id}
{
  "status": "success",
  "data": {
    "id": "a1b2c3d4-...",
    "quote_text": "People's dreams never end!",
    "anime": { "id": "...", "name": "One Piece", "slug": "one-piece" },
    "character": { "id": "...", "name": "Marshall D. Teach", "slug": "marshall-d-teach", "role": "antagonist" },
    "episode": "146",
    "language": "en",
    "tags": ["dreams", "villain"],
    "created_at": "2026-01-15T10:30: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.

Path Parameters

quote_id
string
required
The UUID of the quote
{
  "status": "success",
  "data": {
    "id": "a1b2c3d4-...",
    "quote_text": "People's dreams never end!",
    "anime": { "id": "...", "name": "One Piece", "slug": "one-piece" },
    "character": { "id": "...", "name": "Marshall D. Teach", "slug": "marshall-d-teach", "role": "antagonist" },
    "episode": "146",
    "language": "en",
    "tags": ["dreams", "villain"],
    "created_at": "2026-01-15T10:30:00Z"
  }
}