
Amazon Product Search
Pricing
$29.00/month + usage

Amazon Product Search
Amazon Product Search is an Apify Actor that scrapes product data from Amazon search results pages. It extracts key details such as product titles, prices, images, links, ratings, review counts, and whether the product is marked as sponsored.
5.0 (1)
Pricing
$29.00/month + usage
1
Total users
9
Monthly users
7
Runs succeeded
>99%
Last modified
2 days ago
🔍 Amazon Product Search
Amazon Product Search is an Apify Actor that scrapes product data from Amazon search results pages. It extracts key details such as product titles, prices, images, links, ratings, review counts, and whether the product is marked as sponsored.
🤝 Contributing
We welcome contributions and feedback from the community! Here's how you can help improve this actor:
Reporting Issues
If you encounter any problems or have suggestions for improvements:
- Go to the actor's page on Apify
- Click on the "Issues" tab
- Create a new issue with:
- A clear description of the problem or suggestion
- Steps to reproduce (if applicable)
- Expected vs actual behavior
- Any relevant error messages or logs
Feature Requests
Have an idea for a new feature? We'd love to hear it! Create an issue with:
- A detailed description of the feature
- Use cases and benefits
- Any technical considerations
Bug Reports
Found a bug? Help us fix it by creating an issue with:
- Steps to reproduce
- Expected behavior
- Actual behavior
- Environment details (Apify platform version, input parameters used)
- Relevant error messages or logs
📥 Input Parameters
The Actor accepts the following input parameters:
Parameter | Type | Description | Default Value |
---|---|---|---|
searchQuery | string | Amazon search query (e.g., "dress"). | "dress" |
maxProducts | number | Maximum number of products to scrape. | 100 |
proxyConfiguration | object | Proxy configuration (no proxy, Apify Proxy, or custom proxy URLs). | {} |
Note: The actor dynamically constructs the search URL using the provided searchQuery
parameter.
📤 Output
The Actor outputs a flat array of product objects, each containing:
[{"asin": "B06ZZBFZQV","title": "Amazon's Choice: Overall Pick","link": "https://www.amazon.com/dp/B06ZZBFZQV","image": "https://m.media-amazon.com/images/I/61UCnpSHxPL._AC_UL320_.jpg","price": "30.39","rating": "4.2","reviews": "26700","sponsored": false},{"asin": "B0CQ4NYL2V","title": "DREAM PAIRS","link": "https://www.amazon.com/dp/B0CQ4NYL2V","image": "https://m.media-amazon.com/images/I/71chiwG+rUL._AC_UL320_.jpg","price": "37.99","rating": "4.5","reviews": "2133","sponsored": false}]
- asin: Amazon Standard Identification Number
- title: Product title (from aria-label or text)
- link: Canonical product URL
- image: Product image URL
- price: Price as a string (may be empty if not available)
- rating: Only the numeric rating (e.g., "4.2")
- reviews: Number of reviews (e.g., "26700" for 26.7K)
- sponsored: Boolean indicating if the product is sponsored
🔍 How It Works
Data Storage
Extracted data is stored in Apify's default dataset, making it available for further processing or export in JSON format. Products are pushed one by one for real-time streaming.
Proxy & Robustness
- The Actor leverages Apify's proxy configuration (residential, datacenter, or custom proxies) to reduce the risk of being blocked.
- Uses stealth mode and browser fingerprinting for anti-bot evasion.
- Handles pagination and stops when
maxProducts
is reached. - Logs all skip reasons for transparency and debugging.
- Extracts reviews robustly from both visible spans and aria-labels.
⚠️ Legal Disclaimer
This project is intended for educational and research purposes only. Use of this Actor must comply with Amazon's Terms of Service and robots.txt policies.
- Compliance: Ensure your scraping activities do not violate Amazon's policies.
- Ethical Considerations: Avoid aggressive scraping practices that might harm Amazon's infrastructure.
- Intended Use: For commercial or production use, consider exploring Amazon's official API solutions.