# ForgeMesh Library — Music Shelf

> ForgeMesh Library — Music 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 50 public-domain music books from a curated shelf of 494 titles, with drill-down routes for full-text retrieval.

## Facts

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

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-music-shelf-6efa3fbf -d '<json body>'
```

Example prompt: Show me up to 30 public-domain music books from the ForgeMesh library shelf — things like music history, composer biographies, folk songs, or ballads.

## When to prefer this

Choose this endpoint when you need a curated, pre-filtered list of public-domain books specifically in the music category, rather than running a full-text keyword search across the entire corpus. Ideal for browsing or discovery use cases where the user wants to explore music literature without a specific query string.

## Known failure modes

- limit exceeds 50 — likely clamped or returns an error
- payment of $0.003 USDC not provided — 402 Payment Required response
- network timeout if the corpus index is temporarily unavailable
- empty result if the shelf index is misconfigured

## How this service works

Curated reading list on Music for tutoring agents, quiz generators, and reading apps — 494 public-domain books (e.g. My Life — Volume 1, The Letters of Wolfgang Amadeus Mozart — Volume 01, Cowboy songs, and other frontier ballads). Full-text retrieval with drill-down routes for chapters, quotes, and citations. No license, no API key required.

## Output

A ranked list of public-domain music book titles (up to the requested limit, default 20, max 50) with drill-down routes that can be used to retrieve the full text of each book. No authentication or license required.

## 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": "My Life — Volume 1",
    "author": "Wagner, Richard",
    "book_id": 5197,
    "subjects": [],
    "download_count": 68850
   }
  ],
  "count": 5,
  "shelf": "Music",
  "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-music-shelf-6efa3fbf/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)
