# Audiobook Details & Magnet Link Fetcher

> Audiobook Details & Magnet Link Fetcher is a paid API for AI agents from audiobook-api-beta.vercel.app, paid per call via x402, $0.02/call, status unknown (last checked 2026-09-15).

Fetches full metadata and a magnet download URI for a single audiobook by slug, including title, author, narrators, format, bitrate, duration, cover, and torrent info.

## Facts

- Endpoint: POST https://audiobook-api-beta.vercel.app/api/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/audiobook-api-beta-vercel-app-ee8ca871
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_96sqCghJNRc6ZX5rt306_

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 audiobook-api-beta-vercel-app-ee8ca871 -d '<json body>'
```

Example prompt: Can you get me the full details for the audiobook at slug 'project-hail-mary-andy-weir' — I need the magnet link, narrator, bitrate, file size, and cover image URL.

## When to prefer this

Use this endpoint when you already have an audiobook slug (e.g. from a prior search) and need the full metadata and magnet link to download it. It is the detail-fetch counterpart to the audiobook search endpoint on the same host.

## Known failure modes

- Invalid or unknown slug returns 404 or empty result
- Audiobook page on audiobookbay.lu has changed structure causing parse failure
- Network timeout reaching source site
- Missing or malformed magnet URI if torrent metadata is incomplete

## How this service works

Fetch full metadata and a magnet download link for one audiobook. Returns title, author, narrators, format, bitrate, length, description, cover URL, file size, info hash, tracker list, and the assembled magnet URI.

## Output

Returns a JSON object with title, author, narrators array, audio format, bitrate, total length, full description, cover image URL, file size, info hash, tracker list, 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 from a search result (e.g. \"dune-frank-herbert-2\")"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/audiobook-api-beta-vercel-app-ee8ca871/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from audiobook-api-beta.vercel.app](https://www.zero.xyz/host/audiobook-api-beta.vercel.app/llms.txt)
