# book-bot.app Audiobook Search

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

Searches audiobookbay.lu for audiobooks and returns up to ~12 result entries with slugs for fetching full details and magnet links.

## Facts

- Endpoint: POST https://book-bot.app/api/audiobooks/search
- Price: $0.005/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-2c7ef186
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_OjQk6oIKh3XqF3hv9V7rm

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-2c7ef186 -d '<json body>'
```

Example prompt: Search audiobookbay for audiobooks of 'Project Hail Mary' by Andy Weir and give me the available results so I can pick one to download.

## When to prefer this

Use this endpoint when you need to discover audiobooks on audiobookbay.lu and want a list of matching candidates with slugs. This is the first step in a two-call workflow: search here to get slugs, then call /api/audiobooks/details with a slug to get the full magnet URI. Prefer this over the EPUB/book search endpoints when the user specifically wants an audiobook (narrated/spoken) rather than an ebook.

## Known failure modes

- No results found for the given query — returns empty results list
- Query too vague or malformed — may return irrelevant results
- Upstream audiobookbay.lu unavailable — service may timeout or return error
- Rate limiting or payment failure — request rejected with payment-required error
- Network timeout reaching audiobookbay.lu scraping backend

## How this service works

Search audiobookbay.lu for audiobooks. Returns up to ~12 result entries with slugs that can be passed to /api/audiobooks/details for magnet links.

## Output

Returns up to approximately 12 result entries from audiobookbay.lu, each containing a title and a slug identifier that can be passed to the /api/audiobooks/details endpoint to retrieve full metadata and a magnet link for downloading.

## Example request

```json
{
 "page": 1,
 "query": "Project Hail Mary"
}
```

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "page": {
   "type": "integer",
   "maximum": 20,
   "minimum": 1,
   "description": "Page number, defaults to 1."
  },
  "query": {
   "type": "string",
   "maxLength": 200,
   "minLength": 1,
   "description": "Search query (title, author, or narrator)."
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "audiobooks": [
   {
    "url": "https://audiobookbay.lu/abss/dune-frank-herbert-2/",
    "slug": "dune-frank-herbert-2",
    "title": "Dune - Frank Herbert",
    "category": [
     "Adults",
     "Classic",
     "Sci-Fi"
    ],
    "keywords": [
     "Epic Fantasy",
     "Space Opera"
    ],
    "language": "English",
    "thumbnail": "https://m.media-amazon.com/images/I/71-1WBgjGoL._SL1500_.jpg"
   }
  ]
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/book-bot-app-2c7ef186/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)
