Audible Audiobook Catalog Scraper
Pricing
Pay per event
Audible Audiobook Catalog Scraper
Scrape the Audible audiobook catalog — narrators, series position, Whispersync flag, pricing, runtime, and ratings. 20+ fields per title. Seeded from Audible's official product sitemap; no search keyword required.
Pricing
Pay per event
Rating
0.0
(0)
Developer
BowTiedRaccoon
Maintained by CommunityActor stats
0
Bookmarked
2
Total users
1
Monthly active users
2 days ago
Last modified
Categories
Share
Extract detailed audiobook data from the Audible catalog including narrators, series position, Whispersync availability, pricing, ratings, and more. Scrapes directly from Audible's published product sitemap — no search keyword required, no login needed.
What it scrapes
Each audiobook record includes 20+ fields:
| Field | Description |
|---|---|
asin | Amazon Standard Identification Number |
title | Audiobook title |
subtitle | Subtitle when present |
authors | Author name(s) |
narrators | Narrator name(s) — the high-value field for agency lead-gen |
series | Series name |
series_position | Position in series (e.g. "Book 1") |
runtime_minutes | Total listening time in minutes |
release_date | Release date (ISO 8601) |
publisher | Publisher name |
language | Language |
categories | Audible browse categories |
rating_average | Average star rating (0–5) |
rating_count | Number of ratings |
regular_price | Price in USD (à la carte) |
sale_price | Sale price when on promotion |
is_audible_original | True for Audible Original productions |
is_whispersync | True if Whispersync for Voice is available |
summary | Full book description |
cover_url | Cover image URL |
sample_audio_url | Direct URL to the audio sample |
product_url | Canonical Audible product page URL |
How to use
Scrape the full catalog (or a slice)
Set Max Items to control how many titles to extract. Leave it low (e.g. 100) for a targeted sample, or set 0 for the full ~900k+ title catalog.
{"maxItems": 1000}
Scrape specific titles by URL
Paste Audible product page URLs directly. The sitemap walk is skipped and only those titles are scraped.
{"maxItems": 10,"startUrls": [{"url": "https://www.audible.com/pd/Dune-Audiobook/B002V1OF70"},{"url": "https://www.audible.com/pd/Project-Hail-Mary-Audiobook/B08G9PRS1K"}]}
Use cases
- Narrator agency lead-gen — extract every narrator + audiobook + publisher for outreach
- Price tracking — monitor regular and sale prices across the catalog
- Recommendation engines — series position, runtime, categories for similarity matching
- Market research — publisher distribution, rating benchmarks, Whispersync availability
- Content audits — completeness checks across a publisher's Audible catalog
Discovery method
URLs are sourced from Audible's official product sitemap index (productDetail_sitemap_index.xml) which covers the full US catalog. Child sitemaps are gzip-compressed XML files, each containing thousands of product URLs. No API key or Audible account required.
Notes
- The actor targets the US Audible store. International editions may show different pricing.
sale_priceis null for most titles — Audible rarely surfaces sale pricing in page metadata.- The
sample_audio_urlis constructed from the product SKU and links to a.aaxformat sample. - Full catalog crawls are large. Start with
maxItems: 1000to evaluate data quality before scaling.