# Open Library Book Search

> Open Library Book 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-14).

Searches Open Library for books, returning up to 10 results with title, authors, first publish year, edition count, ISBNs, and cover image per query.

## Facts

- Endpoint: GET https://intel.rallylive.ca/data/book-search
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/open-library-book-search-71d073bf
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_lh2sYIMG0IqEGVuyMPkqa

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 open-library-book-search-71d073bf
```

Example prompt: Search Open Library for 'The Great Gatsby' and give me the title, authors, first publish year, edition count, ISBNs, and cover image for the top results.

## When to prefer this

Use this endpoint when you need quick bibliographic metadata — title, authors, ISBNs, edition count, cover — for books indexed in Open Library. Prefer this over general web search when structured book data (especially ISBNs or edition counts) is required. Best for discovery and reading list building rather than full book content retrieval.

## Known failure modes

- No results found for obscure or misspelled queries
- Missing fields (e.g. no cover or no ISBNs) for lesser-known books in Open Library
- Query too vague returns unrelated books
- Payment failure or 402 response if x402 payment is not handled
- Rate limiting or timeouts from the upstream Open Library API

## How this service works

Book search across Open Library: up to 10 results with title, authors, first publish year, edition count, ISBNs and cover. Find the right edition or reading list fast. $0.01 per search.

## Output

Returns up to 10 book records, each containing: book title, list of authors, first publish year, edition count, ISBNs (multiple formats), and a cover image URL — sourced from Open Library's catalog.

## 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/open-library-book-search-71d073bf/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)
