Amazon Product Scraper avatar
Amazon Product Scraper

Pricing

from $5.00 / 1,000 results

Go to Apify Store
Amazon Product Scraper

Amazon Product Scraper

Scrape product listings from Amazon.in based on search term with detailed product information

Pricing

from $5.00 / 1,000 results

Rating

0.0

(0)

Developer

codingfrontend

codingfrontend

Maintained by Community

Actor stats

0

Bookmarked

2

Total users

1

Monthly active users

an hour ago

Last modified

Share

Amazon India Product Scraper

Apify actor to scrape comprehensive product information from Amazon.in with support for multiple scraping modes and parallel tab processing.

Features

  • Multiple Scraping Modes:
    • Search products by keyword
    • Scrape specific product URLs directly
    • Use custom search URLs with filters
    • Scrape bestseller/category pages
  • Deep Product Scraping: Get detailed product information including specifications, features, variants, and availability
  • Product Reviews: Extract customer reviews with ratings, dates, and helpful votes
  • Parallel Tab Processing: Scrapes multiple products simultaneously using browser tabs for faster execution
  • Anti-Detection: Stealth mode with proxy support and user agent rotation
  • Pagination Support: Automatically navigates through multiple pages

Input

FieldTypeDescription
modestringScraping mode: search, productUrl, searchUrl, categoryUrl
searchQuerystringProduct search term (required for search mode)
productUrlsarrayArray of Amazon product URLs (required for productUrl mode)
searchUrlstringFull Amazon search URL with filters (required for searchUrl mode)
categoryUrlstringAmazon category/bestsellers page URL (required for categoryUrl mode)
maxItemsintegerMaximum products to scrape (default: 50)
deepProductScrapingbooleanEnable detailed product scraping with full specs (default: true)
productReviewsbooleanExtract customer reviews for each product (default: false)
headlessbooleanRun in headless mode (default: true)
proxyConfigurationobjectProxy settings for anti-bot protection

Pricing (Pay-Per-Event)

EventEvent NamePrice
Result (Basic)apify-default-dataset-item$0.005
Product Full Detailsproduct-details$0.005
Product Reviewproduct-review$0.001

Output

Basic Output (from search results)

  • asin, title, brand, price, originalPrice
  • rating, reviewCount, url, imageUrl
  • hasPrime, deliveryInfo

Deep Product Scraping Output (additional fields)

  • Full product description and specifications
  • Product features and bullet points
  • Availability and stock status
  • Seller information and offers
  • Variant details (colors, sizes, etc.)
  • Product attributes table
  • Stars breakdown percentages

Product Reviews Output (when enabled)

  • Reviewer name and rating
  • Review title and body
  • Review date and verified purchase status
  • Helpful votes count
  • Review images

Examples

Search Mode

{
"mode": "search",
"searchQuery": "wireless earbuds",
"maxItems": 50,
"deepProductScraping": true,
"productReviews": false
}

Product URL Mode

{
"mode": "productUrl",
"productUrls": [
"https://www.amazon.in/dp/B0D3DH8TSC",
"https://www.amazon.in/dp/B09BFV96TS"
],
"deepProductScraping": true,
"productReviews": true
}

Search URL Mode (with filters)

{
"mode": "searchUrl",
"searchUrl": "https://www.amazon.in/s?k=bluetooth+headphones&rh=p_36%3A50000-150000",
"maxItems": 25,
"deepProductScraping": true
}

Category/Bestsellers Mode

{
"mode": "categoryUrl",
"categoryUrl": "https://www.amazon.in/gp/bestsellers/electronics/1389401031",
"maxItems": 30,
"deepProductScraping": true
}

Example Output JSON

{
"title": "Apple iPhone 15 (128 GB) - Black",
"url": "https://www.amazon.in/Apple-iPhone-15-128-GB/dp/B0CHX1W1XY",
"asin": "B0CHX1W1XY",
"price": {
"value": 38999,
"currency": "₹"
},
"listPrice": {
"value": 79900,
"currency": "₹"
},
"inStock": true,
"inStockText": "In stock",
"brand": "Apple",
"stars": 4.5,
"reviewsCount": 10307,
"breadCrumbs": "Electronics > Mobiles & Accessories > Smartphones",
"thumbnailImage": "https://m.media-amazon.com/images/I/71657TiFeHL._SX679_.jpg",
"highResolutionImages": [
"https://m.media-amazon.com/images/I/71657TiFeHL._SL1500_.jpg"
],
"features": [
"DYNAMIC ISLAND COMES TO IPHONE 15 — Dynamic Island bubbles up alerts...",
"INNOVATIVE DESIGN — iPhone 15 features a durable color-infused glass...",
"48MP MAIN CAMERA WITH 2X TELEPHOTO — The 48MP Main camera shoots..."
],
"attributes": [
{ "key": "OS", "value": "iOS" },
{ "key": "RAM", "value": "6 GB" },
{ "key": "Resolution", "value": "2556x1179" }
],
"reviews": [
{
"reviewerName": "John Doe",
"rating": 5,
"title": "Amazing phone!",
"body": "Best iPhone I've ever owned...",
"date": "Reviewed in India on 15 January 2025",
"verifiedPurchase": true,
"helpfulVotes": 42
}
]
}

Note

Amazon has strong anti-bot measures. Residential proxies from India are recommended for best results. The scraper uses stealth techniques and parallel tab processing to efficiently extract data while minimizing detection.