Endpoint Playground
Test Crawlora's Audible Product 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/product/<asin>" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| asin (path) | string | Yes | Audible ASIN |
{
"code": 200,
"msg": "OK",
"data": {
"asin": "B08G9PRS1K",
"title": "Project Hail Mary",
"description": "A lone astronaut must save the earth from disaster in this incredible new science-based thriller from the number-one New York Times best-selling author of The Martian.",
"authors": [
{
"asin": "B00G0WYW92",
"name": "Andy Weir"
}
],
"narrators": [
{
"name": "Ray Porter"
}
],
"categories": [
{
"root": "Genres",
"path": [
{
"id": "18580606011",
"name": "Science Fiction & Fantasy"
},
{
"id": "18580628011",
"name": "Science Fiction"
},
{
"id": "18580645011",
"name": "Space Opera"
}
]
}
],
"publisher": "Audible Studios",
"release_date": "2021-05-04",
"runtime_minutes": 970,
"language": "english",
"format_type": "unabridged",
"image_url": "https://m.media-amazon.com/images/I/51POf8gOyLL._SL500_.jpg",
"sample_url": "https://samples.audible.com/bk/adbl/051843/bk_adbl_051843_sample.mp3",
"rating": {
"num_reviews": 47436,
"overall": {
"average": 4.87,
"display_average": "4.9",
"num_ratings": 309353,
"five_star": 278824,
"four_star": 24681,
"three_star": 4072,
"two_star": 1108,
"one_star": 668
}
},
"price": {
"credit_price": 1,
"list_price": 25.22,
"currency_code": "USD"
},
"uri": "https://www.audible.com/pd/B08G9PRS1K",
"source_url": "https://api.audible.com/1.0/catalog/products/B08G9PRS1K?response_groups=product_desc,product_attrs,media,contributors,category_ladders,series,rating,price,sample"
}
}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.
Returns a normalized Audible audiobook: description, authors, narrators, series, category ladders, publisher, release date, runtime, language, sample audio URL, rating (overall/performance/story), and public list price. Credential-free public catalog data from api.audible.com.
{
"code": 200,
"msg": "OK",
"data": {
"asin": "B08G9PRS1K",
"title": "Project Hail Mary",
"description": "A lone astronaut must save the earth from disaster in this incredible new science-based thriller from the number-one New York Times best-selling author of The Martian.",
"authors": [
{
"asin": "B00G0WYW92",
"name": "Andy Weir"
}
],
"narrators": [
{
"name": "Ray Porter"
}
],
"categories": [
{
"root": "Genres",
"path": [
{
"id": "18580606011",
"name": "Science Fiction & Fantasy"
},
{
"id": "18580628011",
"name": "Science Fiction"
},
{
"id": "18580645011",
"name": "Space Opera"
}
]
}
],
"publisher": "Audible Studios",
"release_date": "2021-05-04",
"runtime_minutes": 970,
"language": "english",
"format_type": "unabridged",
"image_url": "https://m.media-amazon.com/images/I/51POf8gOyLL._SL500_.jpg",
"sample_url": "https://samples.audible.com/bk/adbl/051843/bk_adbl_051843_sample.mp3",
"rating": {
"num_reviews": 47436,
"overall": {
"average": 4.87,
"display_average": "4.9",
"num_ratings": 309353,
"five_star": 278824,
"four_star": 24681,
"three_star": 4072,
"two_star": 1108,
"one_star": 668
}
},
"price": {
"credit_price": 1,
"list_price": 25.22,
"currency_code": "USD"
},
"uri": "https://www.audible.com/pd/B08G9PRS1K",
"source_url": "https://api.audible.com/1.0/catalog/products/B08G9PRS1K?response_groups=product_desc,product_attrs,media,contributors,category_ladders,series,rating,price,sample"
}
}curl "https://api.crawlora.net/api/v1/audible/product/<asin>" \
-H "x-api-key: $CRAWLORA_API_KEY"