# library.forgemesh.io – Ask Wuthering Heights

> library.forgemesh.io – Ask Wuthering Heights 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).

Retrieves the most relevant passages from Wuthering Heights in response to a natural-language question, returning cited excerpts with chapter and location references.

## Facts

- Endpoint: POST https://library.forgemesh.io/ask-wuthering-heights
- 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-ask-wuthering-heights-83f630c9
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_pjkA8i5oHTGAsqFz6WRAe

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-ask-wuthering-heights-83f630c9 -d '<json body>'
```

Example prompt: Search Wuthering Heights for passages about Catherine's feelings for Heathcliff and return the top 5 most relevant excerpts with chapter citations.

## When to prefer this

Use this endpoint when you need verbatim, citable passages from Wuthering Heights rather than a generated summary or AI-composed answer. Ideal for research, literary analysis, or fact-checking against the source text. Prefer this over general LLM knowledge when exact quotations and chapter citations are required.

## Known failure modes

- Question string missing or empty — request rejected
- Limit exceeds maximum of 15 — clamped or error returned
- No sufficiently relevant passages found — may return empty list or low-confidence results
- Payment not completed — x402 payment required before response is returned
- Question is too vague to retrieve meaningful results — returns loosely matched passages

## How this service works

Ask a question about Wuthering Heights 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

An ordered list of up to 15 relevant text passages from Wuthering Heights, each accompanied by chapter number and location citation, ranked by relevance to the input question. No generated summaries — raw extracted text from the novel.

## 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 Catherine say about Heathcliff?\""
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "count": 3,
  "title": "Wuthering Heights",
  "author": "Brontë, Emily",
  "method": "full-text retrieval — returns the most relevant passages from the book for your question; no summarization or generation",
  "book_id": 768,
  "passages": [
   {
    "text": "…\"I am Heathcliff! He's always, always in my mind…\"…",
    "chapter": 9,
    "location": "chapter 9, passage #70"
   }
  ],
  "question": "what does Catherine say about Heathcliff"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/library-forgemesh-io-ask-wuthering-heights-83f630c9/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)
