Endpoint Playground
Test Crawlora's Apple Books Book 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?country=us&lang=en-us" \
-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 |
{
"code": 200,
"msg": "OK",
"data": {
"id": 1037193578,
"name": "Harry Potter and the Sorcerer's Stone (Enhanced Edition)",
"url": "https://books.apple.com/us/book/harry-potter-and-the-sorcerers-stone-enhanced-edition/id1037193578",
"artist_id": 79595314,
"artist_name": "J.K. Rowling",
"genres": [
"Fiction & Literature",
"Fantasy"
],
"isbn": "9781781105849",
"publisher": "Pottermore Publishing",
"page_count": 309,
"audience": "Third Grade",
"release_date": "2015-11-20T08:00:00Z",
"price": 11.99,
"currency": "USD",
"free": false,
"rating": 4.7,
"rating_count": 10686,
"rating_histogram": {
"1": 348,
"2": 211,
"3": 339,
"4": 934,
"5": 8854
},
"series_id": 1044374793,
"series_name": "The Harry Potter Series",
"series_sequence": "1"
}
}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 normalized book metadata from Apple Books' public catalog page, including ISBN, page count, publisher, audience, rating histogram, and series linkage.
{
"code": 200,
"msg": "OK",
"data": {
"id": 1037193578,
"name": "Harry Potter and the Sorcerer's Stone (Enhanced Edition)",
"url": "https://books.apple.com/us/book/harry-potter-and-the-sorcerers-stone-enhanced-edition/id1037193578",
"artist_id": 79595314,
"artist_name": "J.K. Rowling",
"genres": [
"Fiction & Literature",
"Fantasy"
],
"isbn": "9781781105849",
"publisher": "Pottermore Publishing",
"page_count": 309,
"audience": "Third Grade",
"release_date": "2015-11-20T08:00:00Z",
"price": 11.99,
"currency": "USD",
"free": false,
"rating": 4.7,
"rating_count": 10686,
"rating_histogram": {
"1": 348,
"2": 211,
"3": 339,
"4": 934,
"5": 8854
},
"series_id": 1044374793,
"series_name": "The Harry Potter Series",
"series_sequence": "1"
}
}curl "https://api.crawlora.net/api/v1/apple-books/book/<id>" \
-H "x-api-key: $CRAWLORA_API_KEY"