# Jane Eyre Passage Retrieval

> Jane Eyre 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).

Returns the most relevant verbatim passages from Jane Eyre given a natural-language question, with chapter and location citations

## Facts

- Endpoint: POST https://library.forgemesh.io/ask-jane-eyre
- 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/jane-eyre-passage-retrieval-761308cd
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_AkTrtbuOyUoYz3BZVem55

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 jane-eyre-passage-retrieval-761308cd -d '<json body>'
```

Example prompt: Search Jane Eyre for the most relevant passages about what Jane says about independence and self-respect — give me up to 8 results with their chapter citations.

## When to prefer this

Choose this endpoint when you need verbatim, citable text from Jane Eyre specifically — not a summary, paraphrase, or AI-generated answer. Ideal for literary research, essay writing, book club discussion, or any use case requiring direct quotation with provenance. Prefer over a general LLM when source fidelity and chapter-level citation accuracy matter. Not suitable for questions about other books (use sibling endpoints for Frankenstein, Dracula, Meditations, etc.).

## Known failure modes

- Question too vague or short may return low-relevance passages
- Limit exceeding 15 is capped or rejected
- Non-Jane-Eyre questions return passages with poor relevance scores
- Payment failure (x402) blocks the call if USDC balance is insufficient
- Empty question field returns a validation error

## How this service works

Ask a question about Jane Eyre 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 ranked list of up to 15 verbatim passages from Jane Eyre (default 5) that best match the question, each accompanied by chapter number and location citation within the text. No AI-generated summary or paraphrase — 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. \"what does Jane say about independence?\""
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "count": 3,
  "title": "Jane Eyre: An Autobiography",
  "author": "Brontë, Charlotte",
  "method": "full-text retrieval — returns the most relevant passages from the book for your question; no summarization or generation",
  "book_id": 1260,
  "passages": [
   {
    "text": "…I am no bird; and no net ensnares me: I am a free human being with an [independent] will…",
    "chapter": 12,
    "location": "chapter 12, passage #90"
   }
  ],
  "question": "what does Jane say about independence"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/jane-eyre-passage-retrieval-761308cd/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)
