# Árukereső Product Scraper — HU Offers & Price History (`bakos_bence/arukereso-products`) Actor

Scrape Árukereső.hu products with every selling shop, HUF prices, delivery, specs, ratings, and price-history charts. Fast HTTP scrape — no browser.

- **URL**: https://apify.com/bakos\_bence/arukereso-products.md
- **Developed by:** [Bakos Bence](https://apify.com/bakos_bence) (community)
- **Categories:** E-commerce
- **Stats:** 2 total users, 1 monthly users, 100.0% runs succeeded, 0 bookmarks
- **User rating**: No ratings yet

## Pricing

from $1.75 / 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.
Since this Actor supports Apify Store discounts, the price gets lower the higher subscription plan you have.

Learn more: https://docs.apify.com/actors/running/actors-in-store.md#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

### What does Árukereső Product Scraper do?

**Scrape Árukereső.hu** (Hungary’s largest Heureka-group price comparison) for a **complete product dump**: every selling shop with HUF prices, delivery text, product specs, ratings, images, and **price-history chart points** (full series + last 14 days).

**Unofficial.** This Actor is **not affiliated with, endorsed by, or maintained by Árukereső / Heureka Group.** It reads **public** product and listing pages only. Review/Q\&A author identities are never fetched.

**Dashboards:** connect **Power BI**, **Tableau**, **Looker Studio**, or **Qlik** to the dataset API — see *Export to Power BI, Tableau, Looker Studio & Qlik* near the end. **AI agents:** paste this Actor’s Store page URL into an Apify-capable agent (MCP / Claude / Cursor with Apify), create an Apify account and API token once, and the agent can run the Actor and wire up the output.

**Related:** [eMAG Product Scraper](https://apify.com/bakos_bence/emag-products) for RO/BG/HU retail catalogs.

#### Why use this Árukereső scraper?

- 🏪 **All merchant offers** per product (SSR + Ajax enrich) — shop name, store id, availability, delivery
- 📈 **Price history charts** (min / average series) for monitoring and backtesting
- 🧾 Specs, brand, category path, rating aggregates, images
- ⚡ Fast **HTTP** scrape (no headless browser) with configurable concurrency
- 🔑 Drop-in input aliases (`startUrls`, `maxRequestsPerCrawl`, `excludeShops`) for common Store tasks
- Prices always kept **with currency** (`HUF`)

#### What data can you extract?

| Field | Description |
|-------|-------------|
| `productId`, `title`, `brand`, `url` | Stable product identity |
| `price` / `priceLow` / `priceHigh` / `currency` | Aggregate HUF prices |
| `offers` / `allOffers` | Merchant rows: price, shop, storeId, availability, delivery |
| `priceHistory.normal` / `.last14` | Chart points with `date`, `minPrice`, `avgPrice` |
| `specs`, `categoryPath`, `ratingValue`, `imageUrls` | PDP attributes |

#### Use cases

- Hungarian **price monitoring** and MAP checks across shops
- Competitor assortment / offer coverage on Árukereső
- Historical price charts for buying windows and promo detection

#### How to scrape Árukereső products

1. Open this Actor in [Apify Console](https://console.apify.com/).
2. Click **Start** on the prefilled Oakley product (`maxItems` 5). Keep **Residential + HU** proxy.
3. Or paste product (`-p…/`), category (`-c…/`), or search URLs — or use search terms.
4. Export JSON/CSV from the dataset, or open the **Issues** tab on this Store page if a run fails.

```json
{
  "startUrls": [
    {
      "url": "https://www.arukereso.hu/napszemuveg-c4077/oakley/holbrook-xl-oo9417-22-p641020866/"
    }
  ],
  "maxItems": 5,
  "includePriceHistory": true,
  "includeAjaxOffers": true,
  "maxConcurrency": 8,
  "proxyConfiguration": {
    "useApifyProxy": true,
    "apifyProxyGroups": ["RESIDENTIAL"],
    "apifyProxyCountry": "HU"
  }
}
```

#### Sample output

```json
{
  "productId": "p641020866",
  "title": "Oakley Holbrook XL OO9417-22",
  "brand": "Oakley",
  "url": "https://www.arukereso.hu/napszemuveg-c4077/oakley/holbrook-xl-oo9417-22-p641020866/",
  "price": 31800,
  "priceLow": 31800,
  "priceHigh": 48040,
  "currency": "HUF",
  "competitorsCount": 12,
  "seller": "smartoptika.hu",
  "offers": [
    {
      "offerId": "1266763279",
      "price": 31800,
      "currency": "HUF",
      "merchant": "smartoptika.hu",
      "storeSlug": "smartoptika-hu",
      "storeId": "155376",
      "availability": "InStock",
      "delivery": "Raktáron"
    }
  ],
  "priceHistory": {
    "normal": [
      { "date": "2025-09-17", "timestampMs": 1758060000000, "minPrice": 39990, "currency": "HUF" }
    ],
    "last14": []
  },
  "scrapedAt": "2026-08-31T17:00:00+00:00",
  "source": "arukereso"
}
```

#### How much does it cost?

**Pay per event (PPE):** Actor start + each product **result** row (full nested offers + history). On Free, results are about **$3.50 / 1,000**; paid plans are lower (see the Pricing tab). Platform usage is included.

#### FAQ

##### Does it scrape reviews or Q\&A authors?

No. Review and Q\&A author names are personal data and are never fetched.

##### Is this affiliated with Árukereső?

No. Unofficial public-page scraper only.

##### Browser or HTTP?

HTTP with TLS fingerprint impersonation — typically much faster than stealth-browser Actors for the same pages.

##### Can I exclude my own shop?

Yes — set `excludeShops` to shop names or domains to drop from `offers`.

#### Input tips for speed

- Prefer **product URLs** when you already know what to scrape
- Raise `maxConcurrency` (8–16) for bulk category runs
- Turn off `includePriceHistory` only if you do not need charts

#### Export to Power BI, Tableau, Looker Studio & Qlik

Use the run’s default dataset API URL (`/v2/datasets/~…/items`) as a JSON/CSV web data source in your BI tool. Schedule the Actor, then refresh the dataset connection on a matching cadence.

#### Keywords

arukereso scraper, árukereső scraper, arukereso.hu, hungarian price comparison, heureka hungary, product offers scraper, price history scraper, HUF price monitoring

#### Feedback

Open the **Issues** tab on this Actor’s Store page for bugs or feature requests.

# Actor input Schema

## `startUrls` (type: `array`):

Paste product pages (-p…/), category pages (-c…/), or search result URLs.

## `searchTerms` (type: `array`):

Optionally enter Hungarian keywords instead of (or with) URLs.

## `maxItems` (type: `integer`):

Cap products across all URLs and terms. Prefill 5 for a cheap first run.

## `maxRequestsPerCrawl` (type: `integer`):

Alias for Max Products — used by some existing Árukereső Actor tasks.

## `excludeShops` (type: `array`):

Optionally enter shop names or domains to drop from offers (e.g. your own store).

## `includePriceHistory` (type: `boolean`):

Fetch min/avg price chart points (full history + last 14 days).

## `includeAjaxOffers` (type: `boolean`):

Merge SSR offers with Ajax.ProductOffers for fuller shop lists.

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

Raise for throughput (8–16 typical). Lower if you hit rate limits.

## `proxyType` (type: `string`):

Keep Apify Proxy on for Store runs.

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

Keep Residential + HU for reliable Árukereső access.

## Actor input object example

```json
{
  "startUrls": [
    {
      "url": "https://www.arukereso.hu/napszemuveg-c4077/oakley/holbrook-xl-oo9417-22-p641020866/"
    }
  ],
  "maxItems": 5,
  "excludeShops": [],
  "includePriceHistory": true,
  "includeAjaxOffers": true,
  "maxConcurrency": 8,
  "proxyType": "apify",
  "proxyConfiguration": {
    "useApifyProxy": true,
    "apifyProxyGroups": [
      "RESIDENTIAL"
    ],
    "apifyProxyCountry": "HU"
  }
}
```

# Actor output Schema

## `overview` (type: `string`):

Default dataset items.

# 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 = {
    "startUrls": [
        {
            "url": "https://www.arukereso.hu/napszemuveg-c4077/oakley/holbrook-xl-oo9417-22-p641020866/"
        }
    ],
    "maxItems": 5,
    "includePriceHistory": true,
    "includeAjaxOffers": true,
    "maxConcurrency": 8,
    "proxyType": "apify",
    "proxyConfiguration": {
        "useApifyProxy": true,
        "apifyProxyGroups": [
            "RESIDENTIAL"
        ],
        "apifyProxyCountry": "HU"
    }
};

// Run the Actor and wait for it to finish
const run = await client.actor("bakos_bence/arukereso-products").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 = {
    "startUrls": [{ "url": "https://www.arukereso.hu/napszemuveg-c4077/oakley/holbrook-xl-oo9417-22-p641020866/" }],
    "maxItems": 5,
    "includePriceHistory": True,
    "includeAjaxOffers": True,
    "maxConcurrency": 8,
    "proxyType": "apify",
    "proxyConfiguration": {
        "useApifyProxy": True,
        "apifyProxyGroups": ["RESIDENTIAL"],
        "apifyProxyCountry": "HU",
    },
}

# Run the Actor and wait for it to finish
run = client.actor("bakos_bence/arukereso-products").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 '{
  "startUrls": [
    {
      "url": "https://www.arukereso.hu/napszemuveg-c4077/oakley/holbrook-xl-oo9417-22-p641020866/"
    }
  ],
  "maxItems": 5,
  "includePriceHistory": true,
  "includeAjaxOffers": true,
  "maxConcurrency": 8,
  "proxyType": "apify",
  "proxyConfiguration": {
    "useApifyProxy": true,
    "apifyProxyGroups": [
      "RESIDENTIAL"
    ],
    "apifyProxyCountry": "HU"
  }
}' |
apify call bakos_bence/arukereso-products --silent --output-dataset

```

## MCP server setup

```json
{
    "mcpServers": {
        "apify": {
            "type": "http",
            "url": "https://mcp.apify.com/?tools=fetch-actor-details,bakos_bence/arukereso-products"
        }
    }
}

```

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/QDzBoRpTXIBxkbfbf/builds/OzhdSHu5zgnxtqy4r/openapi.json
