Audible Book Search Scraper 📚 avatar

Audible Book Search Scraper 📚

Try for free

6 hours trial then $19.99/month - No credit card required now

Go to Store
Audible Book Search Scraper 📚

Audible Book Search Scraper 📚

easyapi/audible-book-search-scraper
Try for free

6 hours trial then $19.99/month - No credit card required now

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. 🎧📚

Developer
Maintained by Community

Actor Metrics

  • 1 monthly user

  • No reviews yet

  • No bookmarks yet

  • >99% runs succeeded

  • Created in Feb 2025

  • Modified 10 days ago

🔍 What does Audible Book Search Scraper do?

This actor scrapes detailed information about audiobooks from Audible search results. It's perfect for publishers, researchers, and anyone interested in audiobook market analysis.

✨ Features

  • 📑 Scrapes comprehensive audiobook details from Audible search results
  • 🔄 Supports multiple search URLs
  • 📊 Extracts rich metadata including titles, authors, narrators, ratings, and pricing
  • ⚡ High-performance scrolling pagination
  • 🛡️ Built-in proxy support
  • 🎯 Configurable maximum items limit

📋 Output Data Structure

For each audiobook, the actor extracts:

  • Title and subtitle
  • Author and narrator information
  • Runtime duration
  • Release date
  • Language
  • Ratings (stars and count)
  • Regular and member pricing
  • Product image URL
  • Product page URL
  • ASIN (Amazon Standard Identification Number)

💡 Use Cases

  • Market research and price monitoring
  • Content availability tracking
  • Author and narrator popularity analysis
  • Audiobook catalog compilation
  • Competitive analysis

🔧 Input Parameters

The actor accepts the following parameters:

  • searchUrls: Array of Audible search URLs to scrape
  • maxItems: Maximum number of items to scrape (optional)
  • proxyConfiguration: Proxy settings (optional)

📝 Limitations

  • Respects Audible's terms of service
  • Rate limiting implemented for responsible scraping
  • Some content may require authentication

Input Example

A full explanation of an input example in JSON.

1{
2    "searchUrls": [
3        "https://www.audible.com/search?keywords=love&k=love&sprefix=%2Cna-audible-us%2C1564&i=na-audible-us&url=search-alias%3Dna-audible-us&ref=nb_sb_noss_2"
4    ],
5    "maxItems": 50
6}

Output sample

The results will be wrapped into a dataset which you can always find in the Storage tab. Here's an excerpt from the data you'd get if you apply the input parameters above:

And here is the same data but in JSON. You can choose in which format to download your data: JSON, JSONL, Excel spreadsheet, HTML table, CSV, or XML.

1[
2    {
3        "searchUrl": "https://www.audible.com/search?keywords=love&k=love&sprefix=%2Cna-audible-us%2C1564&i=na-audible-us&url=search-alias%3Dna-audible-us&ref=nb_sb_noss_2",
4        "title": "Love, Mom",
5        "subtitle": "",
6        "author": "Iliana Xander",
7        "narrator": "Kira FixxLaura HorowitzWalker WilliamsMelissa RedmondPetrea BurchardTravis Horner",
8        "runtime": "Length: 9 hrs and 37 mins",
9        "releaseDate": "02-11-25",
10        "language": "English",
11        "ratings": {
12            "stars": 4.5,
13            "count": 124
14        },
15        "price": {
16            "regular": "$19.95",
17            "member": "$19.95"
18        },
19        "imageUrl": "https://m.media-amazon.com/images/I/51Ik2GxbfAL._SL500_.jpg",
20        "productUrl": "/pd/Love-Mom-Audiobook/B0DWNGJFPV?qid=1740470252&sr=1-1&ref_pageloadid=not_applicable&pf_rd_p=83218cca-c308-412f-bfcf-90198b687a2f&pf_rd_r=SFZHHFRA3RYT9SW63C5P&plink=CK6z6aZVo1dNt8N0&pageLoadId=LB7EHAb7sZk7gPuP&creativeId=0d6f6720-f41c-457e-a42b-8c8dceb62f2c&ref=a_search_c3_lProduct_1_1",
21        "asin": "B0DWNGJFPV"
22    },
23    ...
24]