# Dracula Full-Text Passage Retrieval

> Dracula Full-Text 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 passages from Bram Stoker's Dracula in response to a natural-language question, with chapter and location citations.

## Facts

- Endpoint: POST https://library.forgemesh.io/ask-dracula
- 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/dracula-full-text-passage-retrieval-483a1065
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_S8sBM-OIjdoQqHb3NTsKo

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 dracula-full-text-passage-retrieval-483a1065 -d '<json body>'
```

Example prompt: Search the actual text of Dracula for passages about what Van Helsing knows about vampires and give me up to 8 of the most relevant excerpts with their chapter locations.

## When to prefer this

Choose this endpoint when you need verbatim, cited passages from Dracula itself — not a paraphrase, summary, or AI-generated answer. Ideal for fact-checking literary claims, locating specific scenes, supporting academic or editorial work, or grounding an agent's response in primary-source text. Prefer over a general LLM answer when citation accuracy and source fidelity matter.

## Known failure modes

- Question too vague or off-topic returns low-relevance passages
- Limit parameter exceeding 15 is capped or rejected
- Missing question field returns a validation error
- Network or payment failure (x402) returns a 402 or 5xx error
- Very short questions may retrieve loosely related passages

## How this service works

Ask a question about Dracula 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 or near-verbatim text passages from Bram Stoker's Dracula that are most semantically relevant to the question, each annotated with its chapter number and location 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 Van Helsing know about vampires?\""
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "count": 3,
  "title": "Dracula",
  "author": "Stoker, Bram, 1847-1912",
  "method": "full-text retrieval — returns the most relevant passages from the book for your question; no summarization or generation",
  "book_id": 345,
  "passages": [
   {
    "text": "…The nosferatu do not die like the bee when he sting once…",
    "chapter": 14,
    "location": "chapter 14, passage #250"
   }
  ],
  "question": "what does Van Helsing know about vampires"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/dracula-full-text-passage-retrieval-483a1065/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)
