Endpoint Playground
Test Crawlora's Apple Books Audiobook 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?country=us&lang=en-us" \
-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 |
{
"code": 200,
"msg": "OK",
"data": {
"id": 1442174040,
"name": "Harry Potter and the Sorcerer's Stone",
"url": "https://books.apple.com/us/audiobook/harry-potter-and-the-sorcerers-stone/id1442174040",
"artist_id": 79595314,
"artist_name": "J.K. Rowling",
"genres": [
"Kids & Young Adults",
"Audiobooks"
],
"narrator": "Jim Dale",
"duration_seconds": 29898,
"preview_url": "https://audio-ssl.itunes.apple.com/itunes-assets/AudioPreview.../sample.m4a",
"provider": "Pottermore Publishing",
"release_date": "2015-11-20T08:00:00Z",
"price": 25.99,
"currency": "USD",
"free": false,
"rating": 4.5,
"rating_count": 10639,
"rating_histogram": {
"1": 695,
"2": 421,
"3": 484,
"4": 800,
"5": 8239
},
"series_id": 6442645726,
"series_name": "The Harry Potter Series",
"book_id": 1037193578
}
}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 audiobook metadata from Apple Books' public catalog page, including narrator, duration, audio preview, and a cross-link to the ebook edition (when one exists).
{
"code": 200,
"msg": "OK",
"data": {
"id": 1442174040,
"name": "Harry Potter and the Sorcerer's Stone",
"url": "https://books.apple.com/us/audiobook/harry-potter-and-the-sorcerers-stone/id1442174040",
"artist_id": 79595314,
"artist_name": "J.K. Rowling",
"genres": [
"Kids & Young Adults",
"Audiobooks"
],
"narrator": "Jim Dale",
"duration_seconds": 29898,
"preview_url": "https://audio-ssl.itunes.apple.com/itunes-assets/AudioPreview.../sample.m4a",
"provider": "Pottermore Publishing",
"release_date": "2015-11-20T08:00:00Z",
"price": 25.99,
"currency": "USD",
"free": false,
"rating": 4.5,
"rating_count": 10639,
"rating_histogram": {
"1": 695,
"2": 421,
"3": 484,
"4": 800,
"5": 8239
},
"series_id": 6442645726,
"series_name": "The Harry Potter Series",
"book_id": 1037193578
}
}curl "https://api.crawlora.net/api/v1/apple-books/audiobook/<id>" \
-H "x-api-key: $CRAWLORA_API_KEY"