Search audiobookbay
Search audiobookbay.lu for audiobooks. Returns up to ~12 result entries with slugs that can be passed to /api/audiobooks/details for magnet links.
5000 (raw units)
price
1
calls / 30d
1
unique payers
2026-09-17
updated
Provider
book-bot.app · discovered, not yet claimed by its owner
Payment (x402 accepts[])
[
{
"scheme": "exact",
"network": "eip155:8453",
"payTo": "0x26b354827942a0802552e433d357c78d78d2e987",
"asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
"amount": "5000",
"maxTimeoutSeconds": 300
}
]Output schema
{
"bazaar": {
"info": {
"input": {
"body": {
"query": "dune"
},
"bodyType": "json",
"method": "POST",
"type": "http"
},
"output": {
"example": {
"audiobooks": [
{
"category": [
"Adults",
"Classic",
"Sci-Fi"
],
"keywords": [
"Epic Fantasy",
"Space Opera"
],
"language": "English",
"slug": "dune-frank-herbert-2",
"thumbnail": "https://m.media-amazon.com/images/I/71-1WBgjGoL._SL1500_.jpg",
"title": "Dune - Frank Herbert",
"url": "https://audiobookbay.lu/abss/dune-frank-herbert-2/"
}
]
},
"type": "json"
}
},
"schema": {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"input": {
"additionalProperties": false,
"properties": {
"body": {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"additionalProperties": false,
"properties": {
"page": {
"description": "Page number, defaults to 1.",
"maximum": 20,
"minimum": 1,
"type": "integer"
},
"query": {
"description": "Search query (title, author, or narrator).",
"maxLength": 200,
"minLength": 1,
"type": "string"
}
},
"required": [
"query"
],
"type": "object"
},
"bodyType": {
"enum": [
"json",
"form-data",
"text"
],
"type": "string"
},
"method": {
"enum": [
"POST",
"PUT",
"PATCH"
],
"type": "string"
},
"type": {
"const": "http",
"type": "string"
}
},
"required": [
"type",
"method",
"bodyType",
"body"
],
"type": "object"
},
"output": {
"properties": {
"example": {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"additionalProperties": false,
"properties": {
"audiobooks": {
"items": {
"additionalProperties": false,
"properties": {
"category": {
"items": {
"type": "string"
},
"type": "array"
},
"keywords": {
"items": {
"type": "string"
},
"type": "array"
},
"language": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
]
},
"slug": {
"description": "Audiobook slug — pass this to /api/audiobooks/details.",
"type": "string"
},
"thumbnail": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"description": "Cover image URL, or null if missing."
},
"title": {
"type": "string"
},
"url": {
"description": "audiobookbay.lu detail page URL. Pass the `slug` to /api/audiobooks/details for a magnet link.",
"format": "uri",
"type": "string"
}
},
"required": [
"url",
"slug",
"title",
"thumbnail",
"category",
"language",
"keywords"
],
"type": "object"
},
"type": "array"
}
},
"required": [
"audiobooks"
],
"type": "object"
},
"type": {
"type": "string"
}
},
"required": [
"type"
],
"type": "object"
}
},
"required": [
"input"
],
"type": "object"
}
}
}Use it
curl
curl "https://book-bot.app/api/audiobooks/search" # -> 402 Payment Required, accepts[] lists how to pay # retry with a PAYMENT-SIGNATURE (or PAYMENT header) once paid
JavaScript
const res = await fetch("https://book-bot.app/api/audiobooks/search");
if (res.status === 402) {
const { accepts } = await res.json();
// pay one of accepts[] via an x402 client, then retry with the payment header
}Python
import httpx
res = httpx.get("https://book-bot.app/api/audiobooks/search")
if res.status_code == 402:
accepts = res.json()["accepts"]
# pay one of accepts[] via an x402 client, then retry with the payment headerMachine-readable
Everything on this page is also available as clean JSON at /resources/13479.json, and this resource appears in /discovery/resources and /discovery/search.