# library.forgemesh.io Don Quixote Passage Retrieval

> library.forgemesh.io Don Quixote Passage Retrieval is a paid API for AI agents from library.forgemesh.io, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-13).

Accepts a question about Don Quixote and returns the most relevant passages from the full text, with chapter and location citations.

## Facts

- Endpoint: POST https://library.forgemesh.io/ask-don-quixote
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/library-forgemesh-io-don-quixote-passage-retrieval-53c3fc69
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_jv1GDqTEP-aOVrNPFxGsI

Status and success rate cover calls made through Zero and Zero's own probes. Third-party monitors may report differently.

## How to call it through Zero

Zero handles the 402 payment challenge and records the run. With the Zero CLI installed (`npm i -g @zeroxyz/cli`):

```sh
zero fetch --capability library-forgemesh-io-don-quixote-passage-retrieval-53c3fc69 -d '<json body>'
```

Example prompt: Search Don Quixote for passages about why he attacks the windmills and return up to 8 relevant excerpts with their chapter citations.

## When to prefer this

Choose this endpoint when you need verbatim text retrieval from Don Quixote with precise citations — ideal for literary research, essay writing, quote verification, or any task requiring grounding in the actual source text rather than a paraphrased or AI-generated answer. Prefer this over a general LLM answer when you need citable, chapter-level provenance from the canonical text.

## Known failure modes

- Question is too vague or unrelated to the book's content, returning low-relevance passages
- Limit parameter exceeds 15, likely resulting in a validation error
- No passages found for highly specific or anachronistic queries
- Payment of $0.01 USDC not completed, resulting in 402 response blocking access

## How this service works

Ask a question about Don Quixote and get back the most relevant passages from the book itself, with chapter and location citations. Retrieval only — full-text search, not a generated summary or answer. No license, no API key required.

## Output

A list of up to 15 relevant passages (default 5) extracted directly from the full text of Don Quixote, each accompanied by a chapter reference and location citation within the book. No generated summaries — raw source text only.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "limit": {
   "type": "integer",
   "description": "Max passages (default 5, max 15)"
  },
  "question": {
   "type": "string",
   "description": "Your question about the book, e.g. \"why does Don Quixote attack the windmills?\""
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "count": 2,
  "title": "Don Quixote",
  "author": "Cervantes Saavedra, Miguel de",
  "method": "full-text retrieval — returns the most relevant passages from the book for your question; no summarization or generation",
  "book_id": 996,
  "passages": [
   {
    "text": "…\"Fortune is arranging matters for us better than we could have shaped our desires ourselves…\"",
    "chapter": 8,
    "location": "chapter 8, passage #14"
   }
  ],
  "question": "why does Don Quixote attack the windmills"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/library-forgemesh-io-don-quixote-passage-retrieval-53c3fc69/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from library.forgemesh.io](https://www.zero.xyz/host/library.forgemesh.io/llms.txt)
