# Amazon Europe Catalogue by Category (`ikmal_suzali_atr/amazon-eu-catalog`) Actor

Every product on an Amazon Europe browse-node listing (Germany (amazon.de), United Kingdom (amazon.co.uk), France (amazon.fr), Italy (amazon.it), Spain (amazon.es), Netherlands (amazon.nl)): ASIN, title, brand, price, list price, rating, review count, badges, delivery and sponsored flag, page by…

- **URL**: https://apify.com/ikmal\_suzali\_atr/amazon-eu-catalog.md
- **Developed by:** [AtTheRate AI](https://apify.com/ikmal_suzali_atr) (community)
- **Stats:** 2 total users, 1 monthly users, 0.0% runs succeeded, 0 bookmarks
- **User rating**: No ratings yet

## Pricing

from $2.50 / 1,000 results

This Actor is paid per event. You are not charged for the Apify platform usage, but only a fixed price for specific events.

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

## What's an Apify Actor?

An Actor is a serverless cloud program that runs on the Apify platform. It has two run modes.
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.

Apify vocabulary and the platform model are defined once, in the agent quickstart at https://apify.com/agents.md.

## 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.

Do not guess an integration path. Every one of them is in the agent quickstart at https://apify.com/agents.md: the Apify MCP server, Agent Skills with the Apify CLI, the JavaScript and Python clients, the REST API, and the account-free path for an agent with no human to sign in. It also carries the rule on stating cost before the first paid run.

For examples already wired to this Actor's own input schema, see the [API](#api) section below.

Each client library has reference documentation the quickstart does not restate: [JavaScript/TypeScript](https://docs.apify.com/api/client/js/docs.md) (`npm install apify-client`) and [Python](https://docs.apify.com/api/client/python/docs.md) (`pip install apify-client`).

# README

## Amazon Europe Catalogue by Category

Pulls every product Amazon shows on a browse-node listing across six European storefronts: amazon.de, amazon.co.uk, amazon.fr, amazon.it, amazon.es and amazon.nl. One row is one product card in the order shoppers see it. Use it to rebuild a category's assortment, compare pricing between European markets, and measure how much of a shelf is sponsored.

### What you get

- Every card on the listing with `page` and `position`, so shelf order is preserved.
- `is_sponsored` on every row, taken from the card's own sponsored label in the local language.
- Pricing: `price`, the struck-through `original_price` and `currency` (EUR or GBP).
- Demand signals: `rating`, `rating_count`, `badges` and the `delivery` promise printed on the card.
- Identity per product: `asin`, `name`, `brand`, `image_url` and `product_url`.
- Category context on every row: `category`, `category_title`, `parent_category` and `breadcrumbs`.
- Optional subcategory crawl: set `expandSubcategories` and each node's children are crawled too.

### Input

Give it one or more browse-node ids or listing URLs and pick the storefront.

```json
{
  "categories": ["64272031"],
  "locale": "de",
  "maxPages": 1,
  "expandSubcategories": false,
  "proxyConfiguration": { "useApifyProxy": true, "apifyProxyGroups": ["RESIDENTIAL"], "apifyProxyCountry": "DE" },
  "delayMs": 1500
}
```

- `categories` (required): node ids such as "64272031", a `/b?node=` link or an `/s?rh=n%3A...` listing URL. Ids sit under Bestseller and in the left department nav.
- `locale`: `de`, `uk`, `fr`, `it`, `es` or `nl`. Default `de`.
- `maxPages`: pages per node, 0 means every page.
- `proxyConfiguration`: residential proxy in the storefront's country, already defaulted to residential DE.

### Output

One row per product card on one listing page.

```json
{
  "platform": "amazon-eu",
  "locale": "de",
  "category": "64272031",
  "breadcrumbs": "Kategorie",
  "page": 1,
  "position": 1,
  "asin": "B08HS4K2DH",
  "name": "Badeschaum Rose 1000 ml",
  "brand": null,
  "price": 18.99,
  "original_price": null,
  "currency": "EUR",
  "rating": 4.4,
  "rating_count": 159,
  "in_stock": true,
  "is_sponsored": true,
  "badges": [],
  "delivery": "GRATIS Lieferung Mi., 16. Sept.",
  "product_url": "https://www.amazon.de/dp/B08HS4K2DH",
  "fetched_at": "2026-09-12T03:35:58.552Z"
}
```

`seller` is always null on listing rows, Amazon does not print it on a category card. `brand` is null for most products: today's Amazon cards carry no brand line, and the brand is part of `name`. It is filled for books and media, where the card prints a byline. For a reliable brand per product, pass the ASINs to the matching Amazon product details actor. `original_price` is null when nothing is struck through.

### Use cases

- Price tracking across a category, then the same node in six markets for a European price map.
- Share of shelf: match your products by `asin` or `name` and count them against the category total per `page` and `position`.
- Ad-slot share: `is_sponsored` shows which competitors buy the top of each page.
- Assortment and stock gaps: `in_stock` plus `delivery` shows what is listed and what ships late.

### Notes and limits

- A listing page carries roughly 48 to 60 cards. Browse-node listings go up to about 400 pages per node.
- Keyword search is capped by Amazon at 7 pages. This actor reads browse nodes, so it is not affected.
- A residential proxy inside the storefront's country is needed: DE, GB, FR, IT, ES or NL.
- Node ids are storefront specific. A German node id will not resolve on amazon.co.uk.
- Continental prices use a comma as the decimal separator, British prices a point. Both are parsed correctly.
- A category id that cannot be resolved is skipped and counted in `failed_categories`. A live amazon.co.uk test with a bad id finished cleanly with zero rows.

### 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 results can I get?** About 48 to 60 products a page and up to roughly 400 pages per node, so a large node runs into tens of thousands of rows. Cap it with `maxPages`.

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

**How are sponsored placements detected?** From the sponsored label Amazon prints on the card in the storefront's own language, so `is_sponsored` matches what a local shopper sees.

**Can one run cover several countries?** Run it once per `locale`. Each row records its `locale` and `currency`, so the six markets merge cleanly afterwards.

# Actor input Schema

## `categories` (type: `array`):

Amazon browse-node ids or URLs, e.g. "12149478031", "https://www.amazon.ae/b?node=12149478031" or an "/s?rh=n%3A…" listing URL. Find ids under Best Sellers (/gp/bestsellers/<dept>) or in the left "Department" nav of any listing.

## `locale` (type: `string`):

Which Amazon storefront.

## `maxPages` (type: `integer`):

0 = all pages (Amazon lists ~48 products per page, up to 400 pages per node).

## `expandSubcategories` (type: `boolean`):

Also crawl each node's child nodes from the left-hand Department nav.

## `delayMs` (type: `integer`):

Pause between page fetches.

## `callsPerSession` (type: `integer`):

Re-mint the session after this many page fetches.

## `proxyConfiguration` (type: `object`):

On the Apify platform this decides egress. Residential proxy in the storefront's country is recommended (DE for the default locale). On our own servers it is ignored and our residential proxy is used.

## Actor input object example

```json
{
  "categories": [
    "64272031"
  ],
  "locale": "de",
  "maxPages": 0,
  "expandSubcategories": false,
  "delayMs": 1500,
  "callsPerSession": 80,
  "proxyConfiguration": {
    "useApifyProxy": true,
    "apifyProxyGroups": [
      "RESIDENTIAL"
    ],
    "apifyProxyCountry": "DE"
  }
}
```

# Actor output Schema

## `results` (type: `string`):

One row per product.

## `summary` (type: `string`):

Counts for the run: what was requested, captured, skipped and failed.

# 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 = {
    "categories": [
        "64272031"
    ]
};

// Run the Actor and wait for it to finish
const run = await client.actor("ikmal_suzali_atr/amazon-eu-catalog").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 = { "categories": ["64272031"] }

# Run the Actor and wait for it to finish
run = client.actor("ikmal_suzali_atr/amazon-eu-catalog").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 '{
  "categories": [
    "64272031"
  ]
}' |
apify call ikmal_suzali_atr/amazon-eu-catalog --silent --output-dataset

```

## MCP server setup

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

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/4SoU4EDDsreDBdteT/builds/sHsmR4CMvJdFuVNIA/openapi.json
