Endpoint Playground
Test Crawlora's Apple Books 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/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 books per page |
| page | integer | No | 1 | Search page number (1-based) |
{
"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"
],
"release_date": "2015-11-20T08:00:00Z",
"price": 11.99,
"currency": "USD",
"free": false,
"rating": 4.7,
"rating_count": 10686
}
]
}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 ebooks from Apple's public iTunes Search API.
{
"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"
],
"release_date": "2015-11-20T08:00:00Z",
"price": 11.99,
"currency": "USD",
"free": false,
"rating": 4.7,
"rating_count": 10686
}
]
}curl "https://api.crawlora.net/api/v1/apple-books/search?term=<term>" \
-H "x-api-key: $CRAWLORA_API_KEY"