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

# Get Quote

> Retrieve a single quote by its ID

## Path Parameters

<ParamField path="quote_id" type="string" required>
  The UUID of the quote
</ParamField>

<ResponseExample>
  ```json 200 theme={null}
  {
    "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"
    }
  }
  ```

  ```json 404 theme={null}
  {
    "status": "error",
    "error": {
      "code": "RESOURCE_NOT_FOUND",
      "message": "Quote not found"
    }
  }
  ```
</ResponseExample>
