# ForgeMesh Library — NC Shelf

> ForgeMesh Library — NC 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-15).

Returns a ranked list of up to 50 public-domain books from the NC (Art / Decoration) Dewey shelf, with drill-down routes for full-text retrieval.

## Facts

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

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-nc-shelf-ff97457c -d '<json body>'
```

Example prompt: Can you show me up to 30 public-domain books from the art and decoration shelf on ForgeMesh Library — things like Line and Form or caricature books?

## When to prefer this

Use this endpoint when you specifically want to browse or discover public-domain books in the NC (Art, Decoration, Design, Illustration) Dewey category on ForgeMesh Library. Prefer it over the full-text search endpoint when you want a curated shelf overview rather than passage-level retrieval, and over other shelf endpoints when the user's interest is art, drawing, caricature, or decoration rather than history, economics, or children's literature.

## Known failure modes

- Limit exceeds maximum of 50 — API may return an error or clamp to 50
- No results returned if the shelf is temporarily unavailable
- Payment failure (x402) if the 0.003 USDC fee is not processed correctly
- Invalid input type for limit field (e.g. string instead of integer) causing a 400 error

## How this service works

Curated shelf: NC — 186 public-domain books including Line and Form (1900), The Confessions of a Caricaturist, Vol. 2, Why They Married. 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 books in the NC (Art / Decoration) category, each entry including the book title and drill-down routes for accessing the full text. The default return size is 20 books unless a higher limit (max 50) is specified.

## 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": "Line and Form (1900)",
    "author": "Crane, Walter",
    "book_id": 25290,
    "subjects": [],
    "download_count": 9196
   }
  ],
  "count": 5,
  "shelf": "NC",
  "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-nc-shelf-ff97457c/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)
