Amazon Europe Product Details avatar

Amazon Europe Product Details

Pricing

from $7.00 / 1,000 results

Go to Apify Store
Amazon Europe Product Details

Amazon Europe Product Details

Full Amazon Europe product details by ASIN or URL (Germany (amazon.de), United Kingdom (amazon.co.uk), France (amazon.fr), Italy (amazon.it), Spain (amazon.es), Netherlands (amazon.nl)): title, brand, buybox price, list price and discount, rating and review count, availability, seller and…

Pricing

from $7.00 / 1,000 results

Rating

0.0

(0)

Developer

AtTheRate AI

AtTheRate AI

Maintained by Community

Actor stats

0

Bookmarked

2

Total users

1

Monthly active users

3 days ago

Last modified

Categories

Share

Reads the full product page for any ASIN on amazon.de, amazon.co.uk, amazon.fr, amazon.it, amazon.es or amazon.nl and returns it as one clean row: buybox price, list price and discount, availability, rating and reviews, seller and ships-from, images, bullet points, Best Sellers Rank, variants and the category breadcrumb. Use it to keep your own and your rivals' listings current across six European markets.

What you get

  • Buybox pricing: price, original_price, discount_percent and currency (EUR or GBP).
  • Availability as Amazon states it: in_stock, the raw availability line and stock_quantity.
  • Who is selling: seller, seller_id and ships_from, plus the delivery promise and delivery_location.
  • Reviews and ranking: rating, rating_count, best_sellers_rank, bsr_top and bsr_top_category.
  • Content: name, brand, highlights, description, specifications, images and images_count.
  • Product family: variants with sibling ASINs, parent_asin, badges and category_path.
  • Optional postal code: pass one and the delivery area is set first, with the result in location_applied.

Input

Pass ASINs or product URLs and pick the storefront. ASINs are storefront specific.

{
"asins": ["B0BWFLY91K"],
"locale": "de",
"proxyConfiguration": { "useApifyProxy": true, "apifyProxyGroups": ["RESIDENTIAL"], "apifyProxyCountry": "DE" }
}
  • asins (required): 10-character ASINs or product URLs such as .../dp/<ASIN>. Duplicates are ignored and every input gets one row.
  • locale: de, uk, fr, it, es or nl. Default de.
  • pincode: optional postal code, for example 10115 for Berlin or SW1A 1AA for London.
  • maxConcurrency: products fetched in parallel, 1 to 4. Two is the safe default.
  • proxyConfiguration: residential proxy in the storefront's country, already defaulted to residential DE.

Output

One row per requested ASIN or URL.

{
"platform": "amazon-eu",
"locale": "de",
"requested": "B0BWFLY91K",
"found": true,
"asin": "B0BWFLY91K",
"name": "Product title as printed on the page",
"brand": "Brand name",
"price": 18.99,
"original_price": 24.99,
"discount_percent": 24,
"currency": "EUR",
"rating": 4.4,
"rating_count": 159,
"in_stock": true,
"availability": "Auf Lager",
"seller": "Amazon",
"ships_from": "Amazon",
"delivery": "GRATIS Lieferung Mi., 16. Sept.",
"bsr_top": 1580,
"bsr_top_category": "Drogerie",
"location_applied": false,
"product_url": "https://www.amazon.de/dp/B0BWFLY91K"
}

price is null when the product has no buybox offer, for example when it is unavailable. review_count and seller_rating are always null, use rating_count. An ASIN that does not exist returns a row with found: false and an error message instead of failing the run.

Use cases

  • Daily price and discount monitoring of the same ASIN in six markets, for a European pricing view.
  • Buybox and seller watch: alert when seller or ships_from changes on a listing you own.
  • Availability monitoring: in_stock and availability catch out-of-stock windows early.

Notes and limits

  • Price is read only from the buybox block. Carousels such as "Kunden kauften auch" are ignored, so an unavailable product returns price: null rather than a neighbour's price.
  • A residential proxy inside the storefront's country is required: DE, GB, FR, IT, ES or NL.
  • The postal code is optional and these storefronts intermittently refuse the location call. A live amazon.de run with postcode 10115 did exactly that, continued with the default location and still returned the product.
  • Every input produces a row. Invalid ids, missing products and errors come back as found: false with the reason.

FAQ

Do I need a proxy? Yes, residential in the storefront's country, for example DE for amazon.de and GB for amazon.co.uk. The actor already defaults to residential DE.

How many products can I pull in one run? As many ASINs as you pass. Runtime is the only limit: two products at a time by default, capped at 4 in parallel.

Does it need a login or an API key? No. Public product pages only, no account and no seller credentials.

What happens with a wrong or dead ASIN? You get a row with found: false and the reason. The run still succeeds and the other ASINs are unaffected.