Endpoint Playground
Test Crawlora's Audible Editorial List 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/list/audiobooks" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| list (path) | string | Yes | audiobooks | Editorial list slug |
{
"code": 200,
"msg": "OK",
"data": {
"list": "booktok",
"title": "Best #BookTok Audiobooks",
"shelves": [
{
"heading": "Popular on #BookTok",
"asins": [
"B08V8B2CGV",
"B0FKV9JSWV",
"B0FTT6KFKR",
"B07Q769RZS",
"B08G9PRS1K"
]
},
{
"heading": "Spellbinding romantasy",
"asins": [
"B0C1HG7NSK",
"B0D5YX2C8L"
]
}
],
"source_url": "https://www.audible.com/ep/booktok"
}
}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 of Audible's hand-curated "Popular Lists" pages, normalized into its themed shelves (heading + ordered ASINs). This is an HTML scrape of a marketing/editorial page (audible.com), not api.audible.com's JSON API — pair an ASIN from any shelf with GET /audible/products (batch) or GET /audible/product/{asin} for full title/author/price/rating detail. "Best of the Year" is not covered — its layout has no consistent structure to parse.
{
"code": 200,
"msg": "OK",
"data": {
"list": "booktok",
"title": "Best #BookTok Audiobooks",
"shelves": [
{
"heading": "Popular on #BookTok",
"asins": [
"B08V8B2CGV",
"B0FKV9JSWV",
"B0FTT6KFKR",
"B07Q769RZS",
"B08G9PRS1K"
]
},
{
"heading": "Spellbinding romantasy",
"asins": [
"B0C1HG7NSK",
"B0D5YX2C8L"
]
}
],
"source_url": "https://www.audible.com/ep/booktok"
}
}curl "https://api.crawlora.net/api/v1/audible/list/<list>" \
-H "x-api-key: $CRAWLORA_API_KEY"