Amazon Product Detail Scraper avatar

Amazon Product Detail Scraper

Pricing

from $1.00 / 1,000 results

Go to Apify Store
Amazon Product Detail Scraper

Amazon Product Detail Scraper

Extract full Amazon product details from a product URL - price, MRP, discount, availability/stock status, rating, reviews, brand, and images - with a clear human-readable status for in-stock, no-discount, and currently-unavailable products.

Pricing

from $1.00 / 1,000 results

Rating

0.0

(0)

Developer

Dev Patel

Dev Patel

Maintained by Community

Actor stats

0

Bookmarked

2

Total users

1

Monthly active users

3 minutes ago

Last modified

Share

Extract full product details from an Amazon product URL — with a clear, human-readable status that tells you exactly what state the product is in:

  • 🟢 In stock with a discount → price, MRP, and discount %
  • 🟢 In stock, no discount → price only
  • 🔴 Currently unavailable → reported as unavailable, with no misleading price (a common scraping bug: picking up a "similar items" carousel price for an out-of-stock product — this actor avoids that)

Input

FieldTypeDescription
productUrlsarrayRequired. Amazon product URLs. Full URLs (https://www.amazon.in/dp/ASIN) and short links (https://amzn.in/d/...) both work.
proxyConfigurationobjectResidential proxies required (country India for amazon.in) — Amazon blocks datacenter IPs. Default already requests them.

Example input

{
"productUrls": [
{ "url": "https://www.amazon.in/dp/B09KPSZJMV" },
{ "url": "https://amzn.in/d/0c5iWs7u" }
],
"proxyConfiguration": { "useApifyProxy": true, "apifyProxyGroups": ["RESIDENTIAL"], "apifyProxyCountry": "IN" }
}

Output

In stock with a discount:

{
"asin": "B09KPSZJMV",
"title": "Ghar Soaps Sandalwood & Saffron Magic Soaps For Bath (100 Gms Pack Of 1)...",
"brand": "GHAR SOAPS",
"availability": "In stock",
"inStock": true,
"status": "In stock — ₹192 (4% off, M.R.P. ₹199)",
"price": 192,
"listPrice": 199,
"discountPercent": 4,
"currency": "INR",
"stars": 3.9,
"reviewsCount": 35216,
"bestSeller": true,
"category": "Solid Soap Bars",
"features": ["..."],
"images": ["https://m.media-amazon.com/images/I/....jpg"],
"url": "https://www.amazon.in/dp/B09KPSZJMV"
}

Currently unavailable:

{
"asin": "B0F4XVRH3M",
"title": "Ghar Soaps Magic De-Tan body wash for tan removal 250ml...",
"availability": "Currently unavailable",
"inStock": false,
"status": "Currently unavailable. We don't know when or if this item will be back in stock.",
"price": null,
"listPrice": null,
"discountPercent": null,
"stars": 4.0,
"reviewsCount": 1494,
"url": "https://www.amazon.in/dp/B0F4XVRH3M"
}

Notes

  • Residential proxies required on the platform — Amazon blocks datacenter IPs. The default requests Apify Residential (India). If results come back with an error, your proxy IPs are flagged; switch to a premium residential pool.
  • Price is read from the buy box and only reported when the item is actually purchasable, so unavailable products never show a stray carousel price.
  • Robot-check pages are detected and retried automatically on a fresh session.