# BookBot Find EPUB Download Link

> BookBot Find EPUB Download Link is a paid API for AI agents from book-bot.app, paid per call via x402, $0.5/call, status unknown (last checked 2026-09-15).

Given a book title, searches Anna's Archive and returns a direct EPUB download URL in natural-language text

## Facts

- Endpoint: POST https://book-bot.app/api/books/find
- Price: $0.5/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-11b4944b
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_q-RUnCdPNBdz4yKqWMU5h

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-11b4944b -d '<json body>'
```

Example prompt: Can you find me a direct EPUB download link for 'The Name of the Wind' by Patrick Rothfuss?

## When to prefer this

Use this endpoint when you need a single, ready-to-use EPUB download URL for a specific book title in one step, without needing to manually parse search results or resolve intermediate page URLs. Prefer this over sibling endpoints when you want a fully automated end-to-end lookup rather than a two-step search-then-resolve flow.

## Known failure modes

- Book not found on Anna's Archive — no download link returned
- Ambiguous title matches multiple books — may return incorrect result
- Anna's Archive unavailable — service timeout or error
- EPUB format not available for the requested title
- Payment of 0.5 USDC not processed — request rejected

## How this service works

Find an EPUB download link for a book by title using the BookBot agent. Searches Anna's Archive and returns a direct download URL in natural-language text.

## Output

A natural-language text response containing a direct EPUB download URL sourced from Anna's Archive for the requested book title

## Example request

```json
{
 "author": "F. Scott Fitzgerald",
 "bookName": "The Great Gatsby"
}
```

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "author": {
   "type": "string",
   "description": "The author of the book (optional)."
  },
  "bookName": {
   "type": "string",
   "minLength": 1,
   "description": "The title of the book to search for."
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "text": "https://example.com/download/the-great-gatsby.epub"
 }
}
```

## More

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