Amazon Product Scraper — ASIN, URL or Keyword avatar

Amazon Product Scraper — ASIN, URL or Keyword

Pricing

from $3.50 / 1,000 product scrapeds

Go to Apify Store
Amazon Product Scraper — ASIN, URL or Keyword

Amazon Product Scraper — ASIN, URL or Keyword

Scrape Amazon products from plain ASINs, product URLs or search keywords. Price, list price, rating, reviews, Best Sellers Rank, availability, seller, images, variants and specs across 21 marketplaces. Blocked pages and products that no longer exist are never charged.

Pricing

from $3.50 / 1,000 product scrapeds

Rating

0.0

(0)

Developer

Jürgen Archan

Jürgen Archan

Maintained by Community

Actor stats

0

Bookmarked

1

Total users

0

Monthly active users

6 days ago

Last modified

Share

Give it plain ASINs, product URLs or search keywords. Get back one clean row per product: price, list price, discount, rating, review count, Best Sellers Rank, availability, seller, Prime status, images, variants and the full specs table.

Works on 21 Amazon marketplaces — US, UK, DE, FR, IT, ES, NL, SE, PL, BE, IE, CA, MX, BR, TR, AE, SA, IN, JP, AU, SG.

Why this one

This ActorTypical alternative
ASIN, URL and keyword in one ActorAll three, mixed in a single runUsually split across separate Actors
Best Sellers RankAlways included, in five languagesOften dropped after a captcha
Blocked or missing productsNever chargedCommonly billed as a result
Delivery locationIncluded in the base priceCommonly an add-on fee per result
Residential proxy costCharged only when Amazon forces itBaked into every result
Input fields1039

Input

{
"asins": ["B0CHX1W1XY", "B08N5WRWNW"],
"marketplace": "DE"
}

Or by keyword:

{
"searchKeywords": ["coffee grinder", "milk frother"],
"marketplace": "UK",
"maxResultsPerKeyword": 100
}

Or mixed marketplaces by URL:

{
"productUrls": [
{ "url": "https://www.amazon.com/dp/B0CHX1W1XY" },
{ "url": "https://www.amazon.co.jp/dp/B08N5WRWNW" }
]
}
FieldWhat it does
asinsBare ASINs or ISBNs. No URL building.
productUrlsFull product URLs. Marketplace is read from each URL.
searchKeywordsSearch terms; result pages are walked and paginated.
marketplaceWhich Amazon site to use for ASINs and keywords. Default US.
languageOptional page-language override, e.g. en_GB on amazon.de.
maxResultsPerKeywordProducts per search term. Default 50.
maxItemsHard cap for the whole run. 0 = no cap.
searchResultsOnlyReturn search-page rows only. Much cheaper, far less detail.
proxyStrategyAUTO (datacenter first, escalate on block) or RESIDENTIAL_ONLY.
maxConcurrencyParallel requests. Default 10.

Output

{
"asin": "B0CHX1W1XY",
"url": "https://www.amazon.com/dp/B0CHX1W1XY",
"marketplace": "US",
"title": "Acme Widget Pro 3000, Stainless Steel, 2-Pack",
"brand": "Acme",
"price": 49.99,
"currency": "USD",
"listPrice": 79.99,
"discountPercent": 37.5,
"inStock": true,
"availability": "In Stock",
"rating": 4.6,
"reviewCount": 12483,
"bestSellersRank": [
{ "rank": 1234, "category": "Home & Kitchen" },
{ "rank": 17, "category": "Kitchen Gadgets" }
],
"breadcrumbs": ["Home & Kitchen", "Kitchen Gadgets"],
"features": ["Durable stainless steel construction", "Dishwasher safe"],
"soldBy": "Acme Direct",
"shipsFrom": "Amazon.com",
"isPrime": true,
"images": ["https://m.media-amazon.com/images/I/71abc.jpg"],
"variants": [{ "asin": "B0CHX1W1XZ", "label": "Black" }],
"attributes": { "Item Weight": "1.2 pounds" },
"resultType": "product",
"scrapedAt": "2026-08-26T11:00:00.000Z"
}

Prices are returned as numbers in the marketplace currency, whatever the local format — 1.234,56 € and $1,234.56 both come back as 1234.56. Image URLs point at the full-resolution file, not the thumbnail.

Requests that fail after all retries are written as { "resultType": "error", "asin": …, "error": … } so a partial run is still usable and you can see exactly what is missing.

Pricing

Pay per event:

  • Product scraped — one charge per delivered product.
  • Residential fetch — a surcharge, charged only for products Amazon forced onto residential IPs. With proxyStrategy: AUTO most runs pay this rarely or not at all.

Blocked pages, captchas and products that are not found are never charged.

Good to know

  • Amazon caps keyword searches at roughly 7 pages. For deeper coverage, use a category URL with filters, or split the keyword.
  • searchResultsOnly: true is the cheap mode for building an ASIN list first; run the detail pass afterwards on the ASINs you actually want.
  • Every run writes a RUN_STATS record to the key-value store with traffic, block count and proxy escalations.

Typical uses

Price and stock monitoring · competitor and BSR tracking · catalogue enrichment from an ASIN list · product research before sourcing · matching your own catalogue against Amazon listings.