# library.forgemesh.io Public-Domain Book Index Catalog

> library.forgemesh.io Public-Domain Book Index Catalog is a paid API for AI agents from library.forgemesh.io, paid per call via x402, $0.003/call, status unknown (last checked 2026-09-15).

Returns a ranked list of up to 230 indexed public-domain books (including Poe, Gibbon, and other classics) with drill-down routes for full-text retrieval

## Facts

- Endpoint: POST https://library.forgemesh.io/indexes
- Price: $0.003/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/library-forgemesh-io-public-domain-book-index-catalog-c3676c1c
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_fObxEa_TdpIOzTwitZK9k

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-public-domain-book-index-catalog-c3676c1c -d '<json body>'
```

Example prompt: Show me all the indexed public-domain books available in the library — give me up to 50 results with links so I can drill down into any of them.

## When to prefer this

Use this endpoint when you need to enumerate or browse the full catalog of indexed public-domain books before deciding which title to retrieve or search. Prefer this over full-text search when you want a directory/catalog view rather than passage-level results, or when you need to discover what books are available before querying them individually.

## Known failure modes

- Limit exceeds max of 50 — likely clamped or error returned
- No results if index is empty or service is unavailable
- Payment failure if x402 USDC payment is not processed correctly
- Network timeout if the endpoint is temporarily unavailable

## How this service works

Curated shelf: Indexes — 230 public-domain books including The Works of Edgar Allan Poe, The Raven Edition Table Of Contents And Index Of The Five Volumes, The History of the Decline and Fall of the Roman Empire Table of Contents with links in the HTML file to the two Project Gutenberg editions (12 volumes). Returns a ranked list with drill-down routes for full-text retrieval. No license, no API key required.

## Output

A ranked list of up to 230 public-domain book entries, each with title, author, and drill-down routes that point to full-text retrieval endpoints. Pagination is controlled by the 'limit' parameter (default 20, max 50).

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "limit": {
   "type": "integer",
   "description": "Max books to return (default 20, max 50)"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "books": [
   {
    "year": null,
    "title": "The Works of Edgar Allan Poe, The Raven Edition Table Of Contents And Index Of The Five Volumes",
    "author": "Poe, Edgar Allan",
    "book_id": 25525,
    "subjects": [],
    "download_count": 17705
   }
  ],
  "count": 5,
  "shelf": "Indexes",
  "coverage": {
   "target": 61015,
   "indexed": 61015
  },
  "drill_down": [
   "/book-metadata",
   "/book-chapter",
   "/book-quotes",
   "/literature-search"
  ]
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/library-forgemesh-io-public-domain-book-index-catalog-c3676c1c/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)
