Endpoint Playground
Test Crawlora's Apple Books Audiobook Search 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/search?term=harry+potter&country=us&lang=en-us&limit=50&page=1" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| term | string | Yes | harry potter | Search term |
| country | string | No | us | Two-letter storefront country code |
| lang | string | No | en-us | Result language tag |
| limit | integer | No | 50 | Number of audiobooks per page |
| page | integer | No | 1 | Search page number (1-based) |
{
"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"
],
"preview_url": "https://audio-ssl.itunes.apple.com/itunes-assets/AudioPreview.../sample.m4a",
"release_date": "2015-11-20T08:00:00Z",
"price": 25.99,
"currency": "USD",
"free": false
}
]
}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 Apple Books audiobooks from Apple's public iTunes Search API.
{
"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"
],
"preview_url": "https://audio-ssl.itunes.apple.com/itunes-assets/AudioPreview.../sample.m4a",
"release_date": "2015-11-20T08:00:00Z",
"price": 25.99,
"currency": "USD",
"free": false
}
]
}curl "https://api.crawlora.net/api/v1/apple-books/audiobook/search?term=<term>" \
-H "x-api-key: $CRAWLORA_API_KEY"