Endpoint Playground
Test Crawlora's Apple Books Audiobook 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/apple-books/audiobook/1442174040/reviews?country=us&lang=en-us&page=1&limit=10" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| id (path) | string | Yes | 1442174040 | Apple Books numeric audiobook ID |
| country | string | No | us | Two-letter storefront country code |
| lang | string | No | en-us | Result language tag |
| page | integer | No | 1 | Review page number, default 1 |
| limit | integer | No | 10 | Reviews per page, default 10, max 20 |
{
"code": 200,
"msg": "OK",
"data": [
{
"id": "13979595949",
"rating": 4,
"title": "Fun",
"text": "This book was so fun but also so curious...",
"user_name": "Bomboom",
"date": "2026-04-20T21:35:53Z"
}
]
}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 audiobook's customer reviews. The default first page is served from the audiobook's own catalog page; deeper pages (page>1 or a larger limit) page through Apple's review API directly, up to 20 per page.
{
"code": 200,
"msg": "OK",
"data": [
{
"id": "13979595949",
"rating": 4,
"title": "Fun",
"text": "This book was so fun but also so curious...",
"user_name": "Bomboom",
"date": "2026-04-20T21:35:53Z"
}
]
}curl "https://api.crawlora.net/api/v1/apple-books/audiobook/<id>/reviews" \
-H "x-api-key: $CRAWLORA_API_KEY"