Endpoint Playground
Test Crawlora's Audible Product Reviews 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>/reviews" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| asin (path) | string | Yes | Audible ASIN | |
| page | integer | No | Zero-based result page, default 0 | |
| limit | integer | No | Max reviews, default 10, max 50 |
{
"code": 200,
"msg": "OK",
"data": {
"asin": "B08G9PRS1K",
"page": 0,
"limit": 1,
"reviews": [
{
"id": "c08ab7b9792d4d3fbe7ded4f695f8e45",
"author_name": "Ellen",
"title": "Wow. AMAZE. AMAZE. AMAZE.",
"body": "I rarely write reviews but had to this time. This was the best and most fun I've had listening to an audiobook ever.",
"overall_rating": 5,
"performance_rating": 5,
"story_rating": 5,
"helpful_votes": 689,
"submitted_at": "2021-06-25T02:12:24Z"
}
],
"source_url": "https://api.audible.com/1.0/catalog/products/B08G9PRS1K/reviews?response_groups=review_attrs&num_results=1&page=0"
}
}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 page of an Audible audiobook's customer reviews (author, title, body, overall/performance/story ratings, helpful votes, submission date). Credential-free public catalog data from api.audible.com.
{
"code": 200,
"msg": "OK",
"data": {
"asin": "B08G9PRS1K",
"page": 0,
"limit": 1,
"reviews": [
{
"id": "c08ab7b9792d4d3fbe7ded4f695f8e45",
"author_name": "Ellen",
"title": "Wow. AMAZE. AMAZE. AMAZE.",
"body": "I rarely write reviews but had to this time. This was the best and most fun I've had listening to an audiobook ever.",
"overall_rating": 5,
"performance_rating": 5,
"story_rating": 5,
"helpful_votes": 689,
"submitted_at": "2021-06-25T02:12:24Z"
}
],
"source_url": "https://api.audible.com/1.0/catalog/products/B08G9PRS1K/reviews?response_groups=review_attrs&num_results=1&page=0"
}
}curl "https://api.crawlora.net/api/v1/audible/product/<asin>/reviews" \
-H "x-api-key: $CRAWLORA_API_KEY"