Scrape book data from BookBot's collection via an x402-paid API endpoint.
What it does
BookBot (book-bot.app) is a book discovery service that lets users search and explore a large collection of books. The x402-enabled endpoint at `/api/x402/tools/scrape-books` provides a programmatic, pay-per-call interface for scraping or retrieving book information.
The endpoint responds with an HTTP 402 challenge on POST requests, confirming it is live and uses the x402 payment protocol. However, the 402 challenge body returned is empty (no pricing details, no network/token information, and no schema were captured), so the exact cost per call, accepted payment tokens, and response format remain unknown. No OpenAPI spec, documentation page, or pricing page was found — all returned 404.
The BookBot landing page references well-known titles (e.g., "The Will of the Many", "The Name of the Wind", "The Way of Kings", "The Alchemist") and multiple GPT model tiers, suggesting the service combines book catalog data with LLM-powered features. Without further documentation it is unclear exactly what fields the scrape-books endpoint returns or what query parameters it accepts.
Capabilities
Use cases
- —Retrieving structured book metadata (title, author, description) for a reading app
- —Populating a recommendation engine with book catalog data
- —Agents autonomously purchasing book data on demand via x402
Fit
Best for
- —Developers building book discovery or recommendation tools
- —AI agents that need on-demand book metadata
- —Applications requiring pay-per-call book data without subscriptions
Not for
- —Bulk free book downloads or full-text retrieval
- —Users needing detailed API documentation before integrating
- —Non-x402 payment workflows (no alternative auth/payment documented)
Quick start
curl -X POST https://www.book-bot.app/api/x402/tools/scrape-books \
-H "Content-Type: application/json" \
-H "X-Payment: <x402_payment_token>" \
-d '{"query": "The Name of the Wind"}'Endpoint
Quality
The endpoint is live (returns 402 on POST), but the x402 challenge body is empty — no pricing, no token/network info, no schema. Documentation, pricing, and API pages all return 404. Nearly everything about this endpoint must be inferred from the URL path and landing page alone.
Warnings
- —x402 challenge body is empty: no pricing, accepted tokens, or network information available
- —No OpenAPI spec or documentation found; /docs, /api, /pricing, /README all return 404
- —Request and response schemas are entirely unknown
- —robots.txt disallows /api/ paths for crawlers, which may limit discoverability
Citations
- —The endpoint returns HTTP 402 on POST, confirming it is live via x402 protocolhttps://www.book-bot.app/api/x402/tools/scrape-books
- —The landing page references book titles and GPT model tiershttps://www.book-bot.app
- —robots.txt disallows /api/ pathshttps://www.book-bot.app