Endpoint Playground
Test Crawlora's Apple Books Charts 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/charts?collection=top-free&genre=9031&country=us&limit=50" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| collection | string | No | top-free | Chart collection. Allowed values: top-free, top-paid |
| genre | integer | No | 9031 | Optional Apple Books genre ID to filter the chart |
| country | string | No | us | Two-letter storefront country code |
| limit | integer | No | 50 | Number of chart items to return |
{
"code": 200,
"msg": "OK",
"data": [
{
"id": 395540967,
"name": "The Odyssey",
"artist_name": "Homer",
"artist_id": 781333,
"url": "https://books.apple.com/us/book/the-odyssey/id395540967",
"genres": [
"Poetry",
"Books"
]
}
]
}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 Apple Books chart rankings from Apple's public marketing-tools RSS JSON feed. Supported collections are `top-free` and `top-paid`.
{
"code": 200,
"msg": "OK",
"data": [
{
"id": 395540967,
"name": "The Odyssey",
"artist_name": "Homer",
"artist_id": 781333,
"url": "https://books.apple.com/us/book/the-odyssey/id395540967",
"genres": [
"Poetry",
"Books"
]
}
]
}curl "https://api.crawlora.net/api/v1/apple-books/charts" \
-H "x-api-key: $CRAWLORA_API_KEY"