# ForgeMesh Library — Technology Shelf

> ForgeMesh Library — Technology Shelf 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 technology books with drill-down routes for full-text retrieval

## Facts

- Endpoint: POST https://library.forgemesh.io/technology
- 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-technology-shelf-f810de5d
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_EU6sKHgUby1M9M6TsMHUu

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-technology-shelf-f810de5d -d '<json body>'
```

Example prompt: Can you pull up the top 20 public-domain technology books from the ForgeMesh library shelf so I can browse what's available?

## When to prefer this

Choose this endpoint when you need a curated, pre-ranked browsable list of public-domain technology books without needing a search query. Prefer it over the full-text search endpoint when discovery and shelf-browsing is the goal rather than retrieving specific passages. It is free of API keys and licensing, making it ideal for automated reading-list generation or educational content pipelines.

## Known failure modes

- Limit parameter exceeds 50 — API may reject or cap silently
- Payment not included or insufficient — returns 402 Payment Required
- Limit set to 0 or negative — may return empty list or validation error
- Network timeout if corpus index is temporarily unavailable

## How this service works

Curated shelf: Technology — 219 public-domain books. 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 50 public-domain technology books, each with metadata and drill-down routes that can be used for subsequent full-text retrieval calls. The response indicates the total shelf size (219 books) and returns entries ordered by relevance or historical significance.

## 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": "Mechanical Drawing Self-Taught Comprising instructions in the selection and preparation of drawing instruments, elementary instruction in practical mechanical drawing; together with examples in simple geometry and elementary mechanism, including screw threads, gear wheels, mechanical motions, engines and boilers",
    "author": "Rose, Joshua",
    "book_id": 23319,
    "subjects": [],
    "download_count": 15605
   }
  ],
  "count": 5,
  "shelf": "Technology",
  "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-technology-shelf-f810de5d/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)
