# ForgeMesh Library – PN Shelf (Ghost Stories, Mystery & Super-Science)

> ForgeMesh Library – PN Shelf (Ghost Stories, Mystery & Super-Science) 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-13).

Returns a ranked list of up to 50 public-domain books from the PN classification shelf, covering ghost stories, mystery/detective fiction, and pulp science fiction, with drill-down routes for full-text retrieval.

## Facts

- Endpoint: POST https://library.forgemesh.io/pn
- Price: $0.003/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/forgemesh-library-pn-shelf-ghost-stories-mystery-super-science-92afe5dc
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_hrABt0hoSnTPBfa_cLT3W

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 forgemesh-library-pn-shelf-ghost-stories-mystery-super-science-92afe5dc -d '<json body>'
```

Example prompt: Show me up to 30 public-domain ghost story and mystery books from the ForgeMesh PN shelf so I can pick one to read.

## When to prefer this

Choose this endpoint when you need a curated, ranked browse of public-domain ghost story, mystery, detective, or pulp science fiction titles (PN shelf) without requiring an API key or license. Prefer this over the full-text search endpoint when you want a shelf overview rather than passage-level retrieval, and over other shelves (Harvard Classics, Nobel Prize, etc.) when genre fiction is the target.

## Known failure modes

- Limit exceeds 50 — request may be capped or return an error
- Malformed request body — returns 400-level error
- Payment not processed (x402) — returns 402 Payment Required
- Service temporarily unavailable — returns 5xx error

## How this service works

Curated shelf: PN — 948 public-domain books including Twenty-Five Ghost Stories, Library of the World's Best Mystery and Detective Stories, Astounding Stories of Super-Science January 1930. Returns a ranked list with drill-down routes for full-text retrieval. No license, no API key required.

## Output

A ranked list of public-domain books (up to the requested limit, default 20, max 50) from the PN classification shelf, including titles such as Twenty-Five Ghost Stories, Library of the World's Best Mystery and Detective Stories, and Astounding Stories of Super-Science January 1930. Each entry includes drill-down routes for full-text retrieval.

## 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": "Twenty-Five Ghost Stories",
    "author": "Unknown",
    "book_id": 53419,
    "subjects": [],
    "download_count": 43832
   }
  ],
  "count": 5,
  "shelf": "PN",
  "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/forgemesh-library-pn-shelf-ghost-stories-mystery-super-science-92afe5dc/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)
