Amazon Product Scraper
Extracts product data from Amazon product pages — title, ASIN, brand, category, current price, availability, star rating, review count, full description, feature bullets, images, and product variations with their parent-child ASIN relationships.
What it extracts
Data not currently verified. The output schema for this Actor is not published in our source repository. See the Apify listing for the authoritative version.
Input parameters
Generated from the Actor’s input schema — the same fields the Apify console shows.
| Parameter | Type | Required | Description |
|---|---|---|---|
urls | array | Required | List of Amazon product URLs to scrape |
proxy | object | Optional | Apify Proxy settings for making requests |
API access
Run this Actor from your own code over the Apify API.
{
"urls": [
"https://www.amazon.com/dp/B0C7HGFSN2",
"https://www.amazon.com/dp/B09V3KXCPG"
]
}curl -X POST \
"https://api.apify.com/v2/acts/logical_scrapers~amazon-product-scraper/run-sync-get-dataset-items?token=YOUR_API_TOKEN" \
-H "Content-Type: application/json" \
-d '{"urls":["https://www.amazon.com/dp/B0C7HGFSN2","https://www.amazon.com/dp/B09V3KXCPG"]}'import { ApifyClient } from 'apify-client'
const client = new ApifyClient({ token: 'YOUR_API_TOKEN' })
const run = await client.actor('logical_scrapers~amazon-product-scraper').call({
"urls": [
"https://www.amazon.com/dp/B0C7HGFSN2",
"https://www.amazon.com/dp/B09V3KXCPG"
]
})
const { items } = await client.dataset(run.defaultDatasetId).listItems()
console.log(items)from apify_client import ApifyClient
client = ApifyClient("YOUR_API_TOKEN")
run = client.actor("logical_scrapers~amazon-product-scraper").call(run_input={
"urls": [
"https://www.amazon.com/dp/B0C7HGFSN2",
"https://www.amazon.com/dp/B09V3KXCPG",
],
})
for item in client.dataset(run["defaultDatasetId"]).iterate_items():
print(item)Runs are executed on Apify. Create an API token in your Apify account, then call the Actor over REST or with the official client for your language. The same input object works in the Apify console, so you can test interactively before automating.
Use cases
Price monitoring
Track prices and availability across a set of ASINs on a schedule and detect changes.
Competitive intelligence
Compare competitor listings on price, rating, review volume and feature copy.
Catalogue enrichment
Pull descriptions, images and specifications into your own product database.
Market and demand research
Use rating and review counts across a category as a proxy for relative product traction.
Pricing
Data not currently verified. This Actor's pricing model is not declared in our source repository.
Current rates are published on the Apify listing and can change, so they are not duplicated here. See pricing on Apify
Reliability
Measured across all public Goldmine Actors on Apify, 2026-08-24. This is an account-level figure, not a per-Actor benchmark — per-Actor speed and completeness benchmarks are not yet published. Source.
Limitations
What this Actor does not do, so you can tell before you run it whether it fits.
- Takes product URLs as input. To discover products from a keyword, run Amazon Search Scraper first and feed its URLs in.
- Prices and availability are captured at run time and can differ by region, account and Buy Box state.
- Review text is not extracted — the Actor returns the star rating and review count, not individual reviews.
- Amazon layouts vary by category; some fields may be unavailable on specific listings.
Frequently asked questions
What input does it take?
An array of Amazon product URLs, for example https://www.amazon.com/dp/B0C7HGFSN2. ASINs are validated before scraping.
Does it handle product variations?
Yes. It detects variations such as colour and size, and reports the parent-child ASIN relationship between them.
Can I use it for scheduled price tracking?
Yes — schedule the Actor on Apify and each run appends a fresh dataset you can compare against previous runs.
Used for
Workflows this Actor is part of, and the other scrapers it chains with.