Amazon Product Scraper
Pricing
from $1.25 / 1,000 products
Amazon Product Scraper
Full Amazon product record by ASIN -- title, price, rating, images, variants, stock.
Pricing
from $1.25 / 1,000 products
Rating
0.0
(0)
Developer
datacortex
Maintained by CommunityActor stats
0
Bookmarked
2
Total users
1
Monthly active users
a day ago
Last modified
Categories
Share
Look up any Amazon product by ASIN or URL and export title, price, rating, images, variants, availability, brand, and category. One dataset row per product — ready for CSV, Excel, or JSON.
Built for Apify Console, API, MCP agents, and integrations (Make, Zapier, n8n). This Actor reads product-detail pages. It does not search Amazon or pull customer-review lists.
What you get
| Field | Example |
|---|---|
title | Apple AirPods Pro (2nd Generation) Wireless Ear Buds |
asin | B0CHWRXH8B |
url | https://www.amazon.com/dp/B0CHWRXH8B |
price | 263.86 |
currency | USD |
rating | 4.7 |
reviewsCount | 28766 |
isPrime | true |
availability | In stock. |
imageUrl | https://m.media-amazon.com/images/I/…jpg |
Each input is one product. That is not the same product as a search scraper, which returns many listings per keyword.
How to run
- Open the Actor in Apify Console.
- Paste ASINs or
amazon.*/dp/ASINURLs, one per line. - Optional: marketplace, currency, deliver-to ZIP, max results.
- Click Start. Open the Output tab when the run finishes.
Example input
{"asins": ["B0CHWRXH8B","https://www.amazon.com/dp/B0CHWRXH8B"],"domain": "com","maxResults": 10}
Duplicate ASINs (including the same product as ASIN and URL) are fetched once.
API
curl -X POST "https://api.apify.com/v2/acts/datacortex~amazon-product-scraper/runs?token=YOUR_TOKEN" \-H "Content-Type: application/json" \-d '{"asins":["B0CHWRXH8B"],"domain":"com"}'
Replace YOUR_TOKEN with an Apify API token.
Use with MCP / agents
This is a normal Apify Actor. Agents call it through Apify MCP — you do not run a separate MCP process.
Pin this Actor as a tool (after it is public):
{"mcpServers": {"apify": {"url": "https://mcp.apify.com?tools=datacortex/amazon-product-scraper"}}}
The agent should fetch-actor-details on datacortex/amazon-product-scraper, then run it with the same JSON as Example input above. Running Actors requires an Apify token (OAuth in the client, or Authorization: Bearer <APIFY_TOKEN>).
Pricing
$1.25 per 1,000 products + $0.001 per run.
Each input is one lookup and one dataset row. That is not the same product as a search scraper ($0.50 / 1,000), which returns many rows per query.
| Event | When it fires | Price |
|---|---|---|
apify-actor-start | Once when the run starts | $0.001 |
apify-default-dataset-item | Once per dataset row (one product) | $0.00125 ($1.25 / 1,000) |
| Job | Rows | You pay |
|---|---|---|
| 1 product | 1 | $0.001 + $0.00125 = $0.00225 |
| 10 products | 10 | $0.001 + $0.0125 = $0.0135 |
| 100 products | 100 | $0.001 + $0.125 = $0.126 |
| 1,000 products | 1,000 | $0.001 + $1.25 = $1.251 |
Set a max total charge per run so a long ASIN list cannot overrun budget. The Actor stops when that limit is reached.
Input reference
| Field | Required | Default | Notes |
|---|---|---|---|
asins | yes | — | ASINs or URLs, max 1,000, duplicates skipped |
domain | no | com | Marketplace TLD (co.uk, de, in, …) |
maxResults | no | all | Hard cap across the list |
currency | no | marketplace | Optional ISO code, e.g. USD |
geoLocation | no | — | ZIP / deliver-to, e.g. 10001 |
Limitations
- Product-detail pages only. This Actor does not search Amazon, crawl seller catalogs, or download full review threads.
- Prices and Prime badges are what Amazon showed for the chosen marketplace / ZIP.
- Unavailable, geo-blocked, or unparseable listings return an
errorrow. - Failed lookups write one
type: "error"row so you can see which ASIN failed.
Local development
python3 -m venv .venv && source .venv/bin/activatepip install -r requirements.txtcp .env.example .envapify run --input-file=apify_input.json --purge
Changelog
See CHANGELOG.md.