Endpoint Playground
Test Crawlora's Audible Search API with realistic prefilled parameters. Generate a cURL request, inspect the expected structured JSON response, and open the full docs or pricing page when you are ready to integrate this public web data extraction endpoint into your application.
curl "https://api.crawlora.net/api/v1/audible/search" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| q | string | No | Free-text query matched across title, subtitle, and author | |
| title | string | No | Match by title | |
| author | string | No | Match by author name | |
| narrator | string | No | Match by narrator name | |
| category_id | string | No | Restrict to a category id from GET /audible/categories | |
| page | integer | No | Zero-based result page, default 0 | |
| limit | integer | No | Max results, default 10, max 50 |
{
"code": 200,
"msg": "OK",
"data": {
"query": "dune",
"page": 0,
"limit": 2,
"total_results": 1486,
"results": [
{
"asin": "B002V1OF70",
"title": "Dune",
"subtitle": "Book One in the Dune Chronicles",
"release_date": "1965-08-01",
"runtime_minutes": 1262,
"language": "english",
"format_type": "unabridged",
"uri": "https://www.audible.com/pd/B002V1OF70"
},
{
"asin": "B002V8H660",
"title": "Dune Messiah",
"subtitle": "Book Two in the Dune Chronicles",
"release_date": "1969-10-01",
"runtime_minutes": 378,
"language": "english",
"format_type": "unabridged",
"uri": "https://www.audible.com/pd/B002V8H660"
}
],
"source_url": "https://api.audible.com/1.0/catalog/products?keywords=dune&num_results=2&page=0&response_groups=product_desc,product_attrs"
}
}Public Playground
Sample responses, schemas, request previews, and code snippets are visible before sign in. Create an account when you are ready to save an API key and run authenticated requests.
Searches Audible's audiobook catalog by keyword, title, author, narrator, or category id. At least one filter is required. Credential-free public catalog data from api.audible.com.
{
"code": 200,
"msg": "OK",
"data": {
"query": "dune",
"page": 0,
"limit": 2,
"total_results": 1486,
"results": [
{
"asin": "B002V1OF70",
"title": "Dune",
"subtitle": "Book One in the Dune Chronicles",
"release_date": "1965-08-01",
"runtime_minutes": 1262,
"language": "english",
"format_type": "unabridged",
"uri": "https://www.audible.com/pd/B002V1OF70"
},
{
"asin": "B002V8H660",
"title": "Dune Messiah",
"subtitle": "Book Two in the Dune Chronicles",
"release_date": "1969-10-01",
"runtime_minutes": 378,
"language": "english",
"format_type": "unabridged",
"uri": "https://www.audible.com/pd/B002V8H660"
}
],
"source_url": "https://api.audible.com/1.0/catalog/products?keywords=dune&num_results=2&page=0&response_groups=product_desc,product_attrs"
}
}curl "https://api.crawlora.net/api/v1/audible/search" \
-H "x-api-key: $CRAWLORA_API_KEY"