VOOZH about

URL: https://apify.com/crawlerbros/audible-scraper

โ‡ฑ Audible Scraper ยท Apify


Pricing

from $3.00 / 1,000 results

Go to Apify Store

Scrape Audible with Amazon's audiobook marketplace. Search by keyword, fetch by ASIN, browse best-sellers, list by author or category. Returns full audiobook metadata: title, authors, narrators, runtime, ratings, price, cover, series - across 11 locales.

Pricing

from $3.00 / 1,000 results

Rating

0.0

(0)

Developer

๐Ÿ‘ Crawler Bros

Crawler Bros

Maintained by Community

Actor stats

0

Bookmarked

2

Total users

0

Monthly active users

18 days ago

Last modified

Share

Scrape Audible โ€” Amazon's audiobook marketplace. Pull audiobook listings, full metadata, ratings, prices, runtime, narrators, series info, and category data across 11 Audible storefronts (US, UK, DE, FR, JP, AU, IT, ES, IN, CA, BR). HTTP-based via curl_cffi (no proxy required, no cookies, no login).

What this actor does

  • Six modes: search, byAsins, byUrls, bestSellers, byAuthor, byCategory
  • 11 Audible locales โ€” pick any storefront
  • 24 Audible categories โ€” drop-down enum (Mysteries, Sci-Fi & Fantasy, Romance, Self Development, etc.)
  • Rich filters โ€” rating range, runtime range, release-date bucket, narration language, format, "Audible Plus only", "Audible Originals only", keyword
  • 8 sort modes โ€” best-sellers, customer rating, newest, price lowโ†’high, etc.
  • Automatic audnex.us enrichment for ISBN, genre tags, copyright year, high-res cover
  • Empty fields are omitted from every record

Output per audiobook

  • asin โ€” Audible ASIN (10-char identifier, also the Amazon product ID)
  • title, subtitle, description
  • authors[], authorIds[] (Audible author ASINs)
  • narrators[]
  • runtimeMinutes, releaseDate (YYYY-MM-DD)
  • publisher, language
  • categories[], tags[]
  • series โ€” { seriesName, seriesId, seriesPosition }
  • rating (0โ€“5), ratingCount (total reviews)
  • regularPrice, salePrice, priceCurrency (USD/GBP/EUR/JPY/INR/AUD/CAD/BRL)
  • coverImageUrl โ€” high-res cover from m.media-amazon.com CDN
  • audibleUrl โ€” canonical product URL on the selected locale
  • isbn (when available via audnex)
  • isPlusMembership, isAudibleOriginal, isWhispersyncEnabled, isAbridged
  • copyrightYear
  • locale, recordType: "audiobook", scrapedAt

Input

FieldTypeDefaultDescription
modeselectsearchsearch / byAsins / byUrls / bestSellers / byAuthor / byCategory
searchQuerystringatomic habitsFree-text query (mode=search)
localeselectusAudible storefront (us / uk / de / fr / jp / au / it / es / in / ca / br)
asinsarrayโ€“ASINs for byAsins mode
startUrlsarrayโ€“Direct URLs for byUrls mode
categoryselectโ€“Single category (24 enum values)
categoriesmulti-selectโ€“Multiple categories โ€” one pass each
authorQuerystringโ€“Author name (resolves to author ID via Audible search)
authorIdstringโ€“Direct Audible author ID (10-char ASIN) โ€” overrides authorQuery
sortByselectโ€“8 sort modes
releaseDateselectanyany / last-30-days / last-90-days / last-year / last-3-years / last-10-years
narrationLanguageselectโ€“10 narration languages
formatselectaudiobookaudiobook / podcast / all
minRating / maxRatingintโ€“Drop books outside 0โ€“5 rating range
minLength / maxLengthintโ€“Drop books outside this runtime in minutes
isPlusboolfalseOnly Audible Plus titles
isAudibleOriginalboolfalseOnly Audible Originals
containsKeywordstringโ€“Substring filter (title / subtitle / description / authors / narrators / categories)
fetchDetailboolfalseHit each product page for full description (slower)
enrichWithAudnexbooltrueAugment each book with audnex.us data (ISBN, genres, copyright year)
maxItemsint50Hard cap (1โ€“5000)

Example: top sci-fi best-sellers in the US

{
"mode":"bestSellers",
"category":"Science Fiction & Fantasy",
"locale":"us",
"maxItems":50
}

Example: high-rated short audiobooks for learning

{
"mode":"search",
"searchQuery":"productivity",
"minRating":4,
"maxLength":360,
"sortBy":"customer-rating",
"maxItems":100
}

Example: complete Stephen King catalog

{
"mode":"byAuthor",
"authorQuery":"Stephen King",
"locale":"us",
"maxItems":500
}

Example: bulk ASIN lookup

{
"mode":"byAsins",
"asins":["1473565421","B0CSTCJZN1","B07ND8GVR8"]
}

Example: scrape a specific Audible URL

{
"mode":"byUrls",
"startUrls":[
{"url":"https://www.audible.com/pd/Atomic-Habits-Audiobook/1473565421"},
{"url":"https://www.audible.co.uk/search?keywords=fantasy&sort=pubdate-desc-rank"}
]
}

Use cases

  • Market intelligence โ€” rank, review, and price tracking across Audible categories
  • Publisher analytics โ€” benchmark your audiobook's rank vs. competitors
  • Content curation โ€” assemble curated lists by author, category, or rating
  • Recommendation engines โ€” feed audiobook metadata into your recommender
  • Price monitoring โ€” track price/discount cycles across regions
  • Translation/localization research โ€” see how the same book ranks in 11 storefronts
  • Series discovery โ€” auto-discover all books in a series via byAuthor + series field

FAQ

What's an ASIN? Amazon Standard Identification Number โ€” a 10-character ID. Audible reuses Amazon's ASIN namespace, so every audiobook has one (e.g. 1473565421 for Atomic Habits).

Do I need cookies or a login? No. The actor scrapes Audible's public storefront pages.

Why are some fields missing on some records? Audible's search-result cards are leaner than the product detail page. Enable fetchDetail to hit each product page (slower). The default behavior also enriches each book with api.audnex.us data, which fills in ISBN, genres, copyright year, and high-res images.

What's audnex.us? An open community-maintained metadata service that mirrors Audible's product-detail surface. Used here purely as a complement when the listing card doesn't carry a field.

How many books per page? Audible serves 20 audiobooks per search page. The actor paginates up to 25 pages (500 results) per query.

Can I scrape audio files? No โ€” the actor only emits metadata (title, ratings, price, etc.). Audio files are DRM-protected.

What about regional rank/price differences? Run the actor once per locale and dedupe on asin to build a cross-region price/rank matrix.

How fresh is the data? Real-time โ€” Audible's storefront is live; ratings/prices reflect the moment of the run. audnex.us data lags ~24 hours behind Audible's own product DB.

What if a category isn't in the dropdown? Audible's top-level taxonomy has 24 categories. For sub-categories (e.g. "Cyberpunk"), use searchQuery mode with a keyword.

Why is Audible 503-blocking my own browser-based scraper but not this actor? Audible uses Akamai TLS fingerprinting. The actor sends a Chrome 131 TLS handshake via curl_cffi, which is indistinguishable from a real Chrome.

Can I get podcast episodes too? Set format: "podcast" and use a keyword query โ€” Audible's podcast catalog is included on the same storefront.

Are price values inclusive of VAT/tax? Yes โ€” prices reflect what Audible shows on the storefront for that locale, including any applicable VAT.

Are all 11 locales equally reliable? US/CA/AU work consistently from Apify's datacenters. Non-US locales (UK/DE/FR/IT/ES/JP/IN/BR) sometimes serve a simplified responsive layout to datacenter IPs that the actor cannot parse โ€” in that case enable proxyConfiguration.useApifyProxy = true to route through Apify's AUTO proxy, or run from a residential network. The byAsins / byUrls modes work in all locales.

Why doesn't mode: "search" work from Apify cloud? Audible's keyword-search endpoint returns a "no results โ€” try these instead" page for requests originating from Amazon AWS / large datacenter IP ranges. The actor automatically falls back to scraping best-sellers + applying the search query as a containsKeyword filter so the run still emits records. For exhaustive keyword search, use byAuthor, byCategory, or byAsins modes instead.

You might also like

Audible Audiobook Search Scraper

codingfrontend/audible-book-search-scraper

Extract comprehensive audiobook information from Audible search results, including titles, authors, narrators, ratings, pricing, series, and more.

๐Ÿ‘ User avatar

Coding Frontned

4

Audible Search Results Scraper ๐ŸŽง

easyapi/audible-search-results-scraper

Scrape audiobook details from Audible search results including titles, authors, narrators, ratings, and more. Perfect for market research, content analysis, and tracking audiobook trends.

Audible Audiobook Catalog Scraper

jungle_synthesizer/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.

๐Ÿ‘ User avatar

BowTiedRaccoon

2

Audible Audiobook Search Scraper

scrapeai/audible-search-scraper

Extract comprehensive audiobook data from Audible search results at scale. Perfect for market research, price monitoring, and content analysis.

Audible Book Search Scraper ๐Ÿ“š

easyapi/audible-book-search-scraper

A powerful scraper that extracts comprehensive audiobook information from Audible search results, including titles, authors, narrators, ratings, and pricing. Perfect for market research, price monitoring, and content analysis. ๐ŸŽง๐Ÿ“š

Audible Search Results Scraper

codingfrontend/audible-search-results-scraper

Scrape audiobook details from Audible search results including titles, authors, narrators, ratings, and more. Supports all content types including Audible Originals and podcasts.

๐Ÿ‘ User avatar

Coding Frontned

2

Audible Scraper

mscraper/audible-scraper

Extract data from Amazon's audiobook and podcast service Audible. Extract data straight from Audible Best Sellers. Scrape prices, descriptions, ratings, reviews, and other data from the results, which you can export in a number of dataset formats.

Audible Email Scraper

scraper-mind/audible-email-scraper

Audible Email Scraper โ€“ Extract Audible emails effortlessly with fast, accurate scraping. Search by keywords, location & domain for targeted contacts. Scrape Audible listings with ease โœ… Proxy support for uninterrupted results. Download in JSON, CSV, Excel. Ideal for lead gen, marketing & research!

Audible Email Scraper

simpleapi/audible-email-scraper

Audible Email Scraper collects email contact data to support audiobook market research and outreach. Analyze publishers, genres, or regions while identifying direct contact points at scale.