# library.forgemesh.io – Pride and Prejudice Passage Retrieval

> library.forgemesh.io – Pride and Prejudice 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-14).

Returns the most relevant verbatim passages from Pride and Prejudice, with chapter and location citations, given a natural-language question about the book.

## Facts

- Endpoint: POST https://library.forgemesh.io/ask-pride-and-prejudice
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/library-forgemesh-io-pride-and-prejudice-passage-retrieval-0a895e7e
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_2WaMhuYiSeBBcNejdnJtH

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-pride-and-prejudice-passage-retrieval-0a895e7e -d '<json body>'
```

Example prompt: Search Pride and Prejudice for the most relevant passages about what Elizabeth Bennet thinks of Darcy when they first meet — give me up to 8 passages with their chapter citations.

## When to prefer this

Choose this endpoint when you need verbatim, cited source text from Pride and Prejudice specifically — not a summary or AI-generated answer. Ideal for literary research, essay writing, quote verification, or book club prep where exact wording and provenance (chapter/location) matter. Prefer over general web search when you want structured, reliable passage retrieval from the canonical text without hallucination risk.

## Known failure modes

- Question too vague to match meaningful passages — returns low-relevance results
- Limit exceeds 15 — capped or error returned
- No passages found for highly obscure or out-of-scope queries
- Payment failure (x402) if USDC not available or wallet not configured
- Network timeout on the retrieval backend

## How this service works

Ask a question about Pride and Prejudice 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 text passages from Pride and Prejudice that are most semantically relevant to the question, each accompanied by chapter number and location citation within the book. No generated summaries or paraphrases — 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 Elizabeth think of Darcy at the ball?\""
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "count": 4,
  "title": "Pride and Prejudice",
  "author": "Austen, Jane, 1775-1817",
  "method": "full-text retrieval — returns the most relevant passages from the book for your question; no summarization or generation",
  "book_id": 1342,
  "passages": [
   {
    "text": "…but [Darcy] was continually giving offense…",
    "chapter": 3,
    "location": "chapter 3, passage #40"
   }
  ],
  "question": "what does Elizabeth think of Darcy"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/library-forgemesh-io-pride-and-prejudice-passage-retrieval-0a895e7e/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)
