# book-bot.app Audiobook Details

> book-bot.app Audiobook Details is a paid API for AI agents from book-bot.app, paid per call via x402, $0.02/call, status unknown (last checked 2026-09-15).

Fetches full metadata and a magnet download link for a single audiobook on audiobookbay.lu given its slug

## Facts

- Endpoint: POST https://book-bot.app/api/audiobooks/details
- Price: $0.02/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/book-bot-app-c7f184b9
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_4KM4XROst5CJc7QHkTlaI

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 book-bot-app-c7f184b9 -d '<json body>'
```

Example prompt: Can you get me the full details and magnet download link for the audiobook at slug 'the-hitchhikers-guide-to-the-galaxy-douglas-adams' on audiobookbay?

## When to prefer this

Use this endpoint after receiving a slug from the audiobook search endpoint (/api/audiobooks/search) and needing the full metadata and magnet URI to actually download or inspect a specific audiobook. This is the detail-fetch step in a two-step search-then-fetch workflow on audiobookbay.lu.

## Known failure modes

- Invalid or non-existent slug returns an error or empty result
- AudiobookBay page structure changes may break extraction
- Network timeout if audiobookbay.lu is slow or unreachable
- Audiobook listing removed from site returns 404 or empty response

## How this service works

Fetch full metadata and a magnet download link for one audiobook on audiobookbay.lu. Returns title, author, narrators, format, length, description, info hash, tracker list, and the assembled magnet URI.

## Output

Returns a structured object containing the audiobook title, author, narrator(s), audio format, runtime length, full description text, torrent info hash, list of tracker URLs, and the fully assembled magnet URI ready for use in a torrent client.

## Example request

```json
{
 "slug": "dune-frank-herbert-2"
}
```

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "slug": {
   "type": "string",
   "pattern": "^[a-z0-9-]+$",
   "maxLength": 300,
   "minLength": 1,
   "description": "Audiobook slug returned by /api/audiobooks/search (e.g. \"dune-frank-herbert-2\")."
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "url": "https://audiobookbay.lu/abss/dune-frank-herbert-2/",
  "slug": "dune-frank-herbert-2",
  "title": "Dune - Frank Herbert",
  "author": "Frank Herbert",
  "format": "M4B",
  "length": "21 hours and 2 minutes",
  "magnet": "magnet:?xt=urn:btih:061850ead3eb6f1c5c6d8420211b4bbf2d4ee3e2&dn=Dune&tr=udp%3A%2F%2Ftracker.opentrackr.org%3A1337%2Fannounce",
  "bitrate": "125 kbps",
  "fileSize": "1.12 GBs",
  "infoHash": "061850ead3eb6f1c5c6d8420211b4bbf2d4ee3e2",
  "trackers": [
   "http://bt.okmp3.ru:2710/announce",
   "udp://tracker.opentrackr.org:1337/announce"
  ],
  "narrators": [
   "Scott Brick",
   "Orlagh Cassidy",
   "Euan Morton"
  ],
  "thumbnail": "https://m.media-amazon.com/images/I/71-1WBgjGoL._SL1500_.jpg",
  "description": "Set on the desert planet Arrakis, Dune is the story of Paul Atreides…"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/book-bot-app-c7f184b9/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from book-bot.app](https://www.zero.xyz/host/book-bot.app/llms.txt)
