# library.forgemesh.io Philosophy Shelf

> library.forgemesh.io Philosophy 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 public-domain philosophy and ethics texts (ancient to early-modern) with title, author, year, book_id, and drill-down routes for full-text retrieval.

## Facts

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

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 library-forgemesh-io-philosophy-shelf-e4792d31 -d '<json body>'
```

Example prompt: Can you pull up the top 10 most historically popular public-domain philosophy and ethics books available — I want titles, authors, and years so I can pick something to read?

## When to prefer this

Use this endpoint when you need a pre-curated, popularity-ranked catalog of public-domain philosophy and ethics texts — specifically ancient to early-modern thought — and want structured metadata (title, author, year, book_id) to drive further full-text retrieval. Prefer this over a full-text search endpoint when you want to browse or present a shelf rather than find specific passages.

## Known failure modes

- limit exceeds 50 — API may reject or cap silently
- invalid limit type (non-integer) returns validation error
- empty result if index is temporarily unavailable
- network/payment failure due to x402 micropayment issues

## How this service works

Curated shelf of public-domain philosophy and ethics texts — from ancient to early-modern thought — ranked by historical popularity. Returns title, author, year, book_id, and drill-down routes for full-text retrieval. No license, no API key required.

## Output

A ranked list of up to 50 public-domain philosophy and ethics books, each with title, author, publication year, a unique book_id, and drill-down route(s) for retrieving the full text of that work.

## 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": "1998",
    "title": "The Republic",
    "author": "Plato",
    "book_id": 1497,
    "subjects": [
     "Political science",
     "Utopias"
    ],
    "download_count": 12000
   }
  ],
  "count": 5,
  "shelf": "Philosophy",
  "coverage": {
   "target": 1000,
   "indexed": 865
  },
  "drill_down": [
   "/book-metadata",
   "/book-chapter",
   "/book-quotes",
   "/literature-search"
  ]
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/library-forgemesh-io-philosophy-shelf-e4792d31/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)
