# ForgeMesh Library – Nutrition Shelf

> ForgeMesh Library – Nutrition 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-16).

Returns a ranked list of up to 150 public-domain nutrition books with drill-down routes for full-text retrieval

## Facts

- Endpoint: POST https://library.forgemesh.io/nutrition
- Price: $0.003/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-16
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/forgemesh-library-nutrition-shelf-eb8d5f1d
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_YU2OweLISROx0haREGvde

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-nutrition-shelf-eb8d5f1d -d '<json body>'
```

Example prompt: Can you pull up the top 20 public-domain nutrition books from the ForgeMesh library shelf so I can browse titles like Human Foods and Their Nutritive Value and The No Breakfast Plan?

## When to prefer this

Choose this endpoint when you need a curated, ranked list of public-domain nutrition and diet books without requiring an API key or license. It is ideal for research assistants, bibliography builders, or reading-list generators focused on historical nutrition literature. Prefer this over a general full-text search endpoint when you want a browsable shelf of titles rather than passage-level results for a specific query.

## Known failure modes

- Invalid limit value (e.g. exceeding 50 or non-integer) may return a validation error
- Payment failure via x402 protocol returns a 402 status with no book data
- Server unavailability returns a 5xx error with no results
- Empty shelf (unlikely but possible if index is rebuilding) returns an empty list

## How this service works

Curated shelf: Nutrition — 150 public-domain books including Human Foods and Their Nutritive Value, The No Breakfast Plan and the Fasting-Cure, The Golden Age Cook Book. 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 nutrition books (default 20), including titles such as Human Foods and Their Nutritive Value, The No Breakfast Plan and the Fasting-Cure, and The Golden Age Cook Book, along with drill-down routes that allow full-text retrieval of each book.

## 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": "Human Foods and Their Nutritive Value",
    "author": "Snyder, Harry",
    "book_id": 20871,
    "subjects": [],
    "download_count": 7704
   }
  ],
  "count": 5,
  "shelf": "Nutrition",
  "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-nutrition-shelf-eb8d5f1d/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)
