Amazon.de Product Data — Prices, Stock, Buybox, GPSR avatar

Amazon.de Product Data — Prices, Stock, Buybox, GPSR

Pricing

from $0.20 / 1,000 product check (light)s

Go to Apify Store
Amazon.de Product Data — Prices, Stock, Buybox, GPSR

Amazon.de Product Data — Prices, Stock, Buybox, GPSR

Fast product data from the German Amazon marketplace (amazon.de only): price, stock, buybox, seller, shipping, rich content, raw HTML and GPSR compliance data, charged per result.

Pricing

from $0.20 / 1,000 product check (light)s

Rating

0.0

(0)

Developer

primeASIN TEAM

primeASIN TEAM

Maintained by Community

Actor stats

0

Bookmarked

2

Total users

1

Monthly active users

14 days ago

Last modified

Share

Germany only. This Actor covers the amazon.de marketplace exclusively. ASINs listed solely on amazon.com, amazon.co.uk, amazon.fr or any other marketplace are reported as not found — and are never charged.

What does Amazon.de Product Data do?

This Actor returns structured product data from Amazon.de for any list of ASINs: current price, stock, buybox status, seller, shipping cost — and optionally the full product content (title, brand, bullets, description, images, ratings), the complete raw page HTML for your own parsers, or GPSR compliance data (manufacturer contact and EU responsible person).

It does not run a browser on Apify. Requests go to a dedicated scraping backend that renders Amazon pages on its own mobile-proxy and datacenter infrastructure, tuned for the German marketplace and running around the clock. That is why results come back in seconds and you are charged per result, not per compute unit — a failed lookup costs you nothing.

Why use it?

  • Repricing and dropshipping — poll price, stock, buybox seller and shipping for your catalog; feed the results into your repricer via the Apify API or integrations.
  • EU compliance (GPSR) — since December 2024, products sold in the EU must name a manufacturer and an EU responsible person. This Actor extracts both from the product page. Very few data providers cover this at all.
  • Product research — pull rich content (bullets, description, images, rating, review count, list price) for thousands of ASINs without maintaining your own scraper, proxies or captcha handling.
  • AI agents and MCP — the Actor answers in real time via Standby mode, so an agent can look up a German Amazon price mid-conversation instead of waiting for a batch job.

How to use it

  1. Paste your ASINs (or full Amazon product URLs) into the input — one per line.
  2. Pick the data depth: light (price/stock/buybox) or rich (full content).
  3. Optionally enable GPSR, the EPREL energy-label lookup or the current-seller resolve.
  4. Run the Actor and download the dataset as JSON, CSV, Excel or HTML — or fetch it via the Apify API on a schedule.

Input

{
"asins": ["B08N5WRWNW", "https://www.amazon.de/dp/B0CD1YGJTH"],
"mode": "light",
"gpsr": false,
"fresh": false
}

Output

One dataset item per ASIN. Light mode example:

{
"asin": "B08N5WRWNW",
"ok": true,
"price": 64.99,
"stock": true,
"buybox": true,
"seller_id": "A3JWKAKR8XB7XF",
"fba": true,
"used": false,
"shipping": 0,
"delivery": "2026-08-08",
"redirect": null,
"cached": false,
"mode": "light",
"fetchedAt": "2026-08-06T12:00:00.000Z"
}
FieldDescription
priceCurrent buybox price in EUR (null if unavailable)
stockWhether the product is in stock
buyboxWhether a qualified new-condition buybox exists
seller_idAmazon seller ID of the current seller
fbaFulfilled by Amazon
usedtrue when only used offers exist
shippingShipping cost in EUR (0 = free, null = unknown)
redirectSet when Amazon redirects the ASIN to a parent/variant
errorOn failures: { code, message } — failed items are never charged

Rich mode adds title, brand, bullets, description, aplus_text, images, rating, reviews_count, availability, list_price and delivery estimates. GPSR mode additionally returns manufacturer and EU responsible person contact data.

Full HTML mode stores the complete raw page HTML in the run's key-value store and links it from the dataset row (htmlUrl, htmlKey, htmlBytes) — ideal when you run your own extraction pipeline.

Real-time mode for agents and apps (Standby)

Besides the classic batch run, this Actor runs in Standby mode: a warm HTTP endpoint that answers immediately, with no container start-up delay. That makes it a drop-in data source for AI agents, MCP clients and any app that needs an answer inside a request cycle.

# one ASIN
curl "https://<your-standby-url>/?asins=B0CD1YGJTH&mode=light&token=<APIFY_TOKEN>"
# several at once, with options
curl -X POST "https://<your-standby-url>/?token=<APIFY_TOKEN>" \
-H "Content-Type: application/json" \
-d '{"asins":["B0CD1YGJTH","B0CFXPN4LM"],"mode":"rich","seller":true}'

The response holds the same fields as the dataset:

{
"ok": true,
"marketplace": "amazon.de",
"stats": { "ok": 2, "notFound": 0, "failed": 0 },
"items": [ { "asin": "B0CD1YGJTH", "price": 45.99, "stock": true, "...": "..." } ]
}

Up to 100 ASINs per request; use a normal Actor run for bigger batches. Billing is identical — you pay per delivered result, failures are free.

Pricing

You pay per delivered result: a small fee per light check, a slightly higher one per rich product and per GPSR lookup (see the pricing section on this page). ASINs that do not exist and lookups that fail are not charged. Results can be served from a cache up to 60 minutes old — set fresh: true if you need a guaranteed live check.

Tips

  • Batch your ASINs into one run instead of many single-ASIN runs — input is deduplicated automatically.
  • Keep maxConcurrency at the default unless you process thousands of ASINs.
  • Use seller: true only when you need the current buybox seller — it bypasses the cache and costs a small extra fee.

FAQ and support

Which marketplaces are supported? Only amazon.de (Germany). The backend infrastructure, proxy pools and parsers are built specifically for the German marketplace, which is what keeps results fast and accurate. Other marketplaces are not planned right now — if you need one, open an issue and tell us which.

Why does an ASIN come back as not found? Either it does not exist at all, or it exists on a different Amazon marketplace but not on amazon.de. Both cases are free — you are only charged for delivered results.

Is scraping Amazon legal? This Actor extracts publicly visible product data only, no personal data. You are responsible for using the data in compliance with the laws that apply to you.

A lookup failed — was I charged? No. Only results with ok: true are billed.

Something is broken or a field is missing? Open an issue on the Issues tab — bug reports and field requests are welcome.