# Geizhals Price Comparison Scraper - DACH Tech Prices (`santamaria-automations/geizhals-scraper`) Actor

Scrape product prices from Geizhals.at/de, the leading DACH tech price comparison platform. Search by keyword or browse categories. Extract prices, merchants, availability, and product specs. HTTP-only, 128MB.

- **URL**: https://apify.com/santamaria-automations/geizhals-scraper.md
- **Developed by:** [NanoScrape](https://apify.com/santamaria-automations) (community)
- **Categories:** E-commerce, SEO tools, Lead generation
- **Stats:** 8 total users, 2 monthly users, 100.0% runs succeeded, 0 bookmarks
- **User rating**: No ratings yet

## Pricing

from $3.00 / 1,000 product scrapeds

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

## Geizhals Price Comparison Scraper

Scrape product prices from [Geizhals.at](https://geizhals.at/) and [Geizhals.de](https://geizhals.de/), the leading tech price comparison platform in the DACH region.

### What You Get

- Product name, description, and specifications
- Prices from multiple retailers with shop names and links
- Product ratings and review counts
- Category and brand information
- Image URLs

### Use with AI Agents (MCP)

Connect this actor to any MCP-compatible AI client — Claude Desktop, Claude.ai, Cursor, VS Code, LangChain, LlamaIndex, or custom agents.

**Apify MCP server URL:**

```
https://mcp.apify.com?tools=santamaria-automations/geizhals-scraper
```

**Example prompt once connected:**

> "Use `geizhals-scraper` to scrape product listings from geizhals. Return results as a table."

Clients that support dynamic tool discovery (Claude.ai, VS Code) will receive the full input schema automatically via `add-actor`.

### How To Use

#### Paste a search URL

Copy any Geizhals search URL with your filters applied:

```json
{
  "searchUrls": ["https://geizhals.de/?cat=monlcd19wide&xf=11939_27"],
  "maxResults": 50
}
```

#### Search by keyword

```json
{
  "searchQuery": "RTX 4090",
  "maxResults": 20
}
```

### Pricing

Pay-per-result pricing. You only pay for the data you receive.

| Event | Price | Description |
|-------|-------|-------------|
| Actor start | $0.001 | One-time charge per run |
| Product scraped | $0.003 | A product with prices from multiple retailers |

**Examples:**

- 100 products = **$0.30**
- 1,000 products = **$3.00**

No monthly fees. No minimum spend.

### Related Actors

**E-Commerce**

- [Galaxus.ch Scraper](https://apify.com/santamaria-automations/galaxus-ch-scraper) — Swiss online retailer
- [AliExpress Scraper](https://apify.com/santamaria-automations/aliexpress-scraper) — Chinese products
- [AutoScout24 Scraper](https://apify.com/santamaria-automations/autoscout24-scraper) — European cars

**Enrich your data**

- [Website Email & Phone Scraper](https://apify.com/santamaria-automations/website-email-scraper)
- [Google Maps Scraper](https://apify.com/santamaria-automations/google-maps-scraper)

### Issues & Feature Requests

If something is not working or you're missing a feature or data field, please [open an issue](https://console.apify.com/actors/Wy2iZFy8s7t77XuWf/issues) and we'll look into it.

# Actor input Schema

## `searchQuery` (type: `string`):

Product to search for (e.g., 'iPhone 16', 'RTX 4090', 'Samsung Galaxy S24')

## `searchQueries` (type: `array`):

Multiple product searches. Each query runs independently.

## `categoryUrl` (type: `string`):

Direct category URL (e.g., 'https://geizhals.at/?cat=spoutbht'). Overrides search queries.

## `country` (type: `string`):

Which Geizhals domain to search. 'at' = geizhals.at (Austria), 'de' = geizhals.de (Germany).

## `maxResults` (type: `integer`):

Maximum number of products to scrape per query

## `includeOffers` (type: `boolean`):

Fetch product detail pages to extract individual merchant offers (slower but includes all merchants and exact prices)

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

Apify proxy settings. RESIDENTIAL proxy required to bypass Cloudflare.

## Actor input object example

```json
{
  "searchQuery": "iphone 16",
  "country": "at",
  "maxResults": 5,
  "includeOffers": false,
  "proxyConfiguration": {
    "useApifyProxy": true,
    "apifyProxyGroups": [
      "RESIDENTIAL"
    ]
  }
}
```

# Actor output Schema

## `productPrices` (type: `string`):

Dataset containing scraped product prices

# 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 = {
    "searchQuery": "iphone 16",
    "maxResults": 5
};

// Run the Actor and wait for it to finish
const run = await client.actor("santamaria-automations/geizhals-scraper").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 = {
    "searchQuery": "iphone 16",
    "maxResults": 5,
}

# Run the Actor and wait for it to finish
run = client.actor("santamaria-automations/geizhals-scraper").call(run_input=run_input)

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

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

```

## CLI example

```bash
echo '{
  "searchQuery": "iphone 16",
  "maxResults": 5
}' |
apify call santamaria-automations/geizhals-scraper --silent --output-dataset

```

## MCP server setup

```json
{
    "mcpServers": {
        "apify": {
            "command": "npx",
            "args": [
                "mcp-remote",
                "https://mcp.apify.com/?tools=santamaria-automations/geizhals-scraper",
                "--header",
                "Authorization: Bearer <YOUR_API_TOKEN>"
            ]
        }
    }
}

```

## OpenAPI specification

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