Endpoint Playground
Test Crawlora's Audible 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/audible/charts?chart=most_listened&content_type=audiobooks&access_level=all&language=all&duration=all" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| chart | string | No | most_listened | Chart type, default most_listened |
| content_type | string | No | audiobooks | Content type, default audiobooks |
| category_id | string | No | Restrict to a category id from GET /audible/categories | |
| access_level | string | No | all | Membership access level, default all |
| language | string | No | all | Language filter, default all |
| duration | string | No | all | Runtime-length filter, default all |
| originals_only | boolean | No | Restrict to Audible Originals only | |
| page | integer | No | 1-based result page, default 1, 20 results per page |
{
"code": 200,
"msg": "OK",
"data": {
"chart": "most_listened",
"content_type": "audiobooks",
"title": "Most Listened",
"access_level": "all",
"language": "all",
"duration": "all",
"page": 1,
"results_text": "1 - 20 of 100 results",
"entries": [
{
"rank": 1,
"asin": "B0H9SX9ZN4",
"title": "Harker",
"authors": [
"James Patterson",
"Duane Swierczynski"
],
"narrators": [
"Christina Ricci",
"David Oyelowo",
"David Denman",
"Marcus Henderson",
"full cast"
],
"runtime_text": "3 hrs and 3 mins",
"runtime_minutes": 183,
"release_date": "2026-08-13",
"language": "English",
"rating": 4.5,
"ratings_count": 1396,
"price_text": "$13.54",
"uri": "https://www.audible.com/pd/B0H9SX9ZN4"
}
],
"source_url": "https://www.audible.com/charts"
}
}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 one page of an Audible chart — a ranked list with real chart position, price, and rating that has no equivalent on api.audible.com's public JSON API. This is an HTML scrape of audible.com/charts, a different, less stable source class than the rest of this family, though its own filters (category, access level, language, duration, Audible-Originals-only) were individually verified to actually change results. category_id, access_level, and content_type=podcasts are mutually exclusive.
{
"code": 200,
"msg": "OK",
"data": {
"chart": "most_listened",
"content_type": "audiobooks",
"title": "Most Listened",
"access_level": "all",
"language": "all",
"duration": "all",
"page": 1,
"results_text": "1 - 20 of 100 results",
"entries": [
{
"rank": 1,
"asin": "B0H9SX9ZN4",
"title": "Harker",
"authors": [
"James Patterson",
"Duane Swierczynski"
],
"narrators": [
"Christina Ricci",
"David Oyelowo",
"David Denman",
"Marcus Henderson",
"full cast"
],
"runtime_text": "3 hrs and 3 mins",
"runtime_minutes": 183,
"release_date": "2026-08-13",
"language": "English",
"rating": 4.5,
"ratings_count": 1396,
"price_text": "$13.54",
"uri": "https://www.audible.com/pd/B0H9SX9ZN4"
}
],
"source_url": "https://www.audible.com/charts"
}
}curl "https://api.crawlora.net/api/v1/audible/charts" \
-H "x-api-key: $CRAWLORA_API_KEY"