# Free Audiobooks Search

> Free Audiobooks Search is a paid API for AI agents from intel.rallylive.ca, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-13).

Searches for free public-domain audiobooks from LibriVox and Internet Archive, returning runtime, language, genres, and direct download/stream links.

## Facts

- Endpoint: GET https://intel.rallylive.ca/library/audiobooks
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/free-audiobooks-search-3de48199
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_hhOtiuHqsjxKSzBoyjQjj

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 free-audiobooks-search-3de48199
```

Example prompt: Can you find me free audiobooks of Charles Dickens novels on LibriVox — ideally in English — and give me the download links?

## When to prefer this

Choose this endpoint when you need to find free, legally downloadable public-domain audiobooks from LibriVox or Internet Archive, especially when you need direct mp3/zip/RSS links without any subscription or payment. Prefer this over general web search when you specifically want volunteer-narrated, structured audiobook metadata including runtime and language filters.

## Known failure modes

- No results found for an obscure title or author not in LibriVox or Internet Archive
- Returned links may point to archive.org resources that are occasionally slow or temporarily unavailable
- Very new or copyrighted books will not appear since only public-domain works are indexed
- Ambiguous search terms may return loosely related results

## How this service works

Free audiobook finder: public-domain audiobooks from LibriVox (volunteer-read, mp3) with runtime, language, genres and direct zip / RSS / archive.org links, plus audio items from Internet Archive. $0.01 per search.

## Output

Returns a list of matching audiobooks with metadata including title, author, runtime, language, genre tags, and direct links to mp3 files, zip archives, RSS feeds, and archive.org pages for streaming or download.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "properties": {}
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/free-audiobooks-search-3de48199/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from intel.rallylive.ca](https://www.zero.xyz/host/intel.rallylive.ca/llms.txt)
