# library.forgemesh.io – Ask The Time Machine

> library.forgemesh.io – Ask The Time Machine 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).

Performs full-text retrieval over H.G. Wells' The Time Machine, returning the most relevant passages with chapter and location citations in response to a question.

## Facts

- Endpoint: POST https://library.forgemesh.io/ask-the-time-machine
- 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-the-time-machine-c2d7ecab
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_crnYlybRmNvsdTenK5DNl

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-the-time-machine-c2d7ecab -d '<json body>'
```

Example prompt: Search The Time Machine for passages about the Morlocks and Eloi and return the top 5 most relevant excerpts with their chapter citations.

## When to prefer this

Choose this endpoint when you need grounded, citable passages directly from the text of The Time Machine — not a paraphrase or AI-generated answer. Ideal for literary research, essay writing, fact-checking quotes, or book club prep where verbatim source text with chapter citations matters. Prefer over general LLM recall because results are deterministic retrieval from the actual book, not hallucinated summaries.

## Known failure modes

- Question too vague or abstract to match any passage — returns low-relevance or empty results
- Exceeding the max limit of 15 passages returns a validation error
- Network or payment failure (x402 protocol) prevents the call from completing
- Question about a different book or author returns irrelevant results since the corpus is fixed to this single title

## How this service works

Ask a question about The Time Machine 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 (default 5) passages extracted directly from the text of The Time Machine, each accompanied by chapter identification and location metadata indicating where in the book the passage appears. No AI-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. \"what are the Morlocks and Eloi?\""
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "count": 3,
  "title": "The Time Machine",
  "author": "Wells, H. G. (Herbert George)",
  "method": "full-text retrieval — returns the most relevant passages from the book for your question; no summarization or generation",
  "book_id": 35,
  "passages": [
   {
    "text": "…these people I saw were not sophisticated…they struck me as being infantile…",
    "chapter": 5,
    "location": "chapter 5, passage #40"
   }
  ],
  "question": "what are the Morlocks and Eloi"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/library-forgemesh-io-ask-the-time-machine-c2d7ecab/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)
