Audible Search Results Scraper 🎧 avatar

Audible Search Results Scraper 🎧

Try for free

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

Go to Store
Audible Search Results Scraper 🎧

Audible Search Results Scraper 🎧

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

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

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

Developer
Maintained by Community

Actor Metrics

  • 1 monthly user

  • No reviews yet

  • No bookmarks yet

  • >99% runs succeeded

  • Created in Dec 2024

  • Modified 3 months ago

🎯 Features

  • Scrapes detailed audiobook information from Audible search results
  • Supports multiple search URLs for batch processing
  • Handles pagination automatically
  • Extracts comprehensive audiobook metadata:
    • Title and link
    • Author and narrator details
    • Series information
    • Runtime length
    • Release date
    • Language
    • Ratings
    • Cover image URL
    • Price

📋 Use Cases

  • Market research and competitive analysis
  • Track narrator/author popularity
  • Monitor audiobook pricing trends
  • Content discovery and curation
  • Publishing industry insights

🔧 Input Parameters

ParameterTypeDescription
searchUrlsArrayList of Audible search URLs to scrape
maxItemsIntegerMaximum number of items to scrape
proxyConfigurationObjectProxy settings for the scraper

⚙️ Technical Details

  • Implements smart pagination handling
  • Includes automatic retry mechanisms
  • Optimized for reliable data extraction
  • Respects Audible's robots.txt and rate limits

💡 Tips

  • Use specific search queries for better results
  • Adjust maxItems based on your needs
  • Consider using proxy configuration for large-scale scraping

Input Example

A full explanation of an input example in JSON.

1{
2	"searchUrls": [
3		"https://www.audible.com/search?k=teddy+hamilton"
4	],
5    "maxItems": 30
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		"title": "Illicit",
4		"author": "Brynne Asher",
5		"narrator": "Jason Clarke",
6		"series": "The Agents",
7		"length": "Length: 10 hrs and 52 mins",
8		"releaseDate": "Release date: 12-09-24",
9		"language": "Language: English",
10		"rating": "4.5 out of 5 stars",
11		"imageUrl": "https://m.media-amazon.com/images/I/51vU6aKQ0xL._SL500_.jpg",
12		"link": "https://www.audible.com/pd/Illicit-Audiobook/B0DNKJPV3P?qid=1733903528&sr=1-21&ref_pageloadid=CXM1FU29B2Sw9BPq&pf_rd_p=83218cca-c308-412f-bfcf-90198b687a2f&pf_rd_r=9Z8D0JH4BNK7G52Z297N&plink=F87ErJp7hGlbm3iv&pageLoadId=hlDTITTpYocjzay0&creativeId=0d6f6720-f41c-457e-a42b-8c8dceb62f2c&ref=a_search_c3_lProduct_2_1",
13		"price": "Regular price: $24.95"
14	},
15	{
16		"title": "The Genesis 6 Conspiracy, Part II: How Understanding Prehistory and Giants Helps Define End-Time Prophecy",
17		"author": "Gary Wayne",
18		"narrator": "Mel Jackson",
19		"series": "Gary Wayne’s Genesis 6 Conspiracy",
20		"length": "Length: 31 hrs and 40 mins",
21		"releaseDate": "Release date: 12-09-24",
22		"language": "Language: English",
23		"rating": "Not rated yet",
24		"imageUrl": "https://m.media-amazon.com/images/I/41tdKR3ewpL._SL500_.jpg",
25		"link": "https://www.audible.com/pd/The-Genesis-6-Conspiracy-Part-II-How-Understanding-Prehistory-and-Giants-Helps-Define-End-Time-Prophecy-Audiobook/B0DPN8QWCN?qid=1733903528&sr=1-22&ref_pageloadid=CXM1FU29B2Sw9BPq&pf_rd_p=83218cca-c308-412f-bfcf-90198b687a2f&pf_rd_r=9Z8D0JH4BNK7G52Z297N&plink=F87ErJp7hGlbm3iv&pageLoadId=hlDTITTpYocjzay0&creativeId=0d6f6720-f41c-457e-a42b-8c8dceb62f2c&ref=a_search_c3_lProduct_2_2",
26		"price": "Regular price: $29.95"
27	},
28    ...
29]