# Amazon.de Product Data — Prices, Stock, Buybox, GPSR (`radiant_atelier/amazon-product-scraper-eu`) Actor

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.

- **URL**: https://apify.com/radiant\_atelier/amazon-product-scraper-eu.md
- **Developed by:** [primeASIN TEAM](https://apify.com/radiant_atelier) (community)
- **Categories:** Automation, E-commerce, Developer tools
- **Stats:** 2 total users, 1 monthly users, 100.0% runs succeeded, 0 bookmarks
- **User rating**: No ratings yet

## Pricing

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

This Actor is paid per event and usage. You are charged both the fixed price for specific events and for Apify platform usage.

Learn more: https://docs.apify.com/platform/actors/running/actors-in-store#pay-per-event

## What's an Apify Actor?

Actors are web data automations that power AI and operations. They run on the Apify platform to scrape websites, process data, connect APIs, and automate workflows.
In Batch mode, an Actor accepts a well-defined JSON input, performs an action which can take anything from a few seconds to a few hours,
and optionally produces a well-defined JSON output, datasets with results, or files in key-value store.
In Standby mode, an Actor provides a web server which can be used as a website, API, or an MCP server.
Actors are written with capital "A".

## How to integrate an Actor?

If asked about integration, you help developers integrate Actors into their projects.
You adapt to their stack and deliver integrations that are safe, well-documented, and production-ready.
The best way to integrate Actors is as follows.

- **AI agents and MCP clients** — the [Apify MCP server](https://docs.apify.com/integrations/mcp.md) at `https://mcp.apify.com` (remote, streamable HTTP, OAuth on first use).
- **Agentic workflows and local Actor development** — [Agent Skills](https://apify.com/.well-known/agent-skills/index.json) with the [Apify CLI](https://docs.apify.com/cli/docs.md): `npm install -g apify-cli`, then `apify login`.
- **JavaScript/TypeScript projects** — the official [JS/TS client](https://docs.apify.com/api/client/js/docs.md): `npm install apify-client`.
- **Python projects** — the official [Python client](https://docs.apify.com/api/client/python/docs.md): `pip install apify-client`.
- **Any other language** — the [REST API](https://docs.apify.com/api/v2.md).

For usage examples, see the [API](#api) section below.

For more details, see Apify documentation as [Markdown index](https://docs.apify.com/llms.txt) and [Markdown full-text](https://docs.apify.com/llms-full.txt).

# README

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

> **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

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

### Output

One dataset item per ASIN. Light mode example:

```json
{
    "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"
}
```

| Field | Description |
| --- | --- |
| `price` | Current buybox price in EUR (`null` if unavailable) |
| `stock` | Whether the product is in stock |
| `buybox` | Whether a qualified new-condition buybox exists |
| `seller_id` | Amazon seller ID of the current seller |
| `fba` | Fulfilled by Amazon |
| `used` | `true` when only used offers exist |
| `shipping` | Shipping cost in EUR (`0` = free, `null` = unknown) |
| `redirect` | Set when Amazon redirects the ASIN to a parent/variant |
| `error` | On 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.

```bash
## 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:

```json
{
  "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.

# Actor input Schema

## `marketplace` (type: `string`):

This Actor covers the German marketplace only. ASINs listed exclusively on amazon.com, amazon.co.uk, amazon.fr and other marketplaces are reported as not found — and are never charged.

## `asins` (type: `array`):

Amazon.de ASINs to fetch (one per line). Product URLs from amazon.de are also accepted — the ASIN is extracted automatically.

## `mode` (type: `string`):

Light mode is the cheapest and fastest. Rich mode additionally returns full product content (title, brand, bullets, description, A+ text, images, rating, review count, list price). Full HTML stores the complete raw page HTML in the key-value store and links it from the dataset.

## `gpsr` (type: `boolean`):

Also extract GPSR (EU General Product Safety Regulation) data: manufacturer contact and EU responsible person. Billed as a separate, more expensive event — it requires a full page render.

## `eprel` (type: `boolean`):

For products with an EU energy label: decode the EPREL registration ID from the label. Included in the standard price.

## `seller` (type: `boolean`):

Resolve the current buybox seller of record. Bypasses the cache so the seller is always current. Billed as a small extra event per product.

## `fresh` (type: `boolean`):

Results may be served from a cache that is up to 60 minutes old. Enable this to force a fresh scrape for every ASIN.

## `maxConcurrency` (type: `integer`):

How many ASINs are fetched in parallel.

## Actor input object example

```json
{
  "marketplace": "amazon.de",
  "asins": [
    "B08N5WRWNW"
  ],
  "mode": "light",
  "gpsr": false,
  "eprel": false,
  "seller": false,
  "fresh": false,
  "maxConcurrency": 8
}
```

# Actor output Schema

## `dataset` (type: `string`):

No description

## `htmlFiles` (type: `string`):

No description

# API

You can run this Actor programmatically using our API. Below are code examples in JavaScript, Python, and CLI, as well as the OpenAPI specification and MCP server setup.

## JavaScript example

```javascript
import { ApifyClient } from 'apify-client';

// Initialize the ApifyClient with your Apify API token
// Replace the '<YOUR_API_TOKEN>' with your token
const client = new ApifyClient({
    token: '<YOUR_API_TOKEN>',
});

// Prepare Actor input
const input = {
    "asins": [
        "B08N5WRWNW"
    ]
};

// Run the Actor and wait for it to finish
const run = await client.actor("radiant_atelier/amazon-product-scraper-eu").call(input);

// Fetch and print Actor results from the run's dataset (if any)
console.log('Results from dataset');
console.log(`💾 Check your data here: https://console.apify.com/storage/datasets/${run.defaultDatasetId}`);
const { items } = await client.dataset(run.defaultDatasetId).listItems();
items.forEach((item) => {
    console.dir(item);
});

// 📚 Want to learn more 📖? Go to → https://docs.apify.com/api/client/js/docs

```

## Python example

```python
from apify_client import ApifyClient

# Initialize the ApifyClient with your Apify API token
# Replace '<YOUR_API_TOKEN>' with your token.
client = ApifyClient("<YOUR_API_TOKEN>")

# Prepare the Actor input
run_input = { "asins": ["B08N5WRWNW"] }

# Run the Actor and wait for it to finish
run = client.actor("radiant_atelier/amazon-product-scraper-eu").call(run_input=run_input)

# Fetch and print Actor results from the run's dataset (if there are any)
print(f"💾 Check your data here: https://console.apify.com/storage/datasets/{run.default_dataset_id}")
for item in client.dataset(run.default_dataset_id).iterate_items():
    print(item)

# 📚 Want to learn more 📖? Go to → https://docs.apify.com/api/client/python/docs/quick-start

```

## CLI example

```bash
echo '{
  "asins": [
    "B08N5WRWNW"
  ]
}' |
apify call radiant_atelier/amazon-product-scraper-eu --silent --output-dataset

```

## MCP server setup

```json
{
    "mcpServers": {
        "apify": {
            "type": "http",
            "url": "https://mcp.apify.com/?tools=fetch-actor-details,radiant_atelier/amazon-product-scraper-eu"
        }
    }
}

```

The hosted server signs you in with OAuth on first connect, so no API token belongs in this config. Clients without OAuth support can send an `Authorization: Bearer <APIFY_API_TOKEN>` header instead, using a token from API & Integrations in Apify Console (https://console.apify.com/settings/integrations).

## OpenAPI specification

Download the OpenAPI definition: https://api.apify.com/v2/actors/fUcm1St3xll272cgQ/builds/QBlA9GC8sVwerZXL1/openapi.json
