Endpoint Playground
Test Crawlora's Apple Books Book 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/book/1037193578/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 | 1037193578 | Apple Books numeric book 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": "1268728848",
"rating": 5,
"title": "AMAZING",
"text": "I've always been a massive fan of this series...",
"user_name": "Ewing31",
"date": "2015-10-08T14:34:48Z"
}
]
}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 a book's customer reviews. The default first page is served from the book'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": "1268728848",
"rating": 5,
"title": "AMAZING",
"text": "I've always been a massive fan of this series...",
"user_name": "Ewing31",
"date": "2015-10-08T14:34:48Z"
}
]
}curl "https://api.crawlora.net/api/v1/apple-books/book/<id>/reviews" \
-H "x-api-key: $CRAWLORA_API_KEY"