# Kleinanzeigen Listings Scraper (`devilscrapes/kleinanzeigen-scraper`) Actor

Scrape eBay Kleinanzeigen (kleinanzeigen.de) listings by keyword — title, price, location, image, and seller type from Germany's #1 classifieds marketplace. No login needed. Export clean, deduped JSON, CSV, or Excel rows for resale research or price tracking.

- **URL**: https://apify.com/devilscrapes/kleinanzeigen-scraper.md
- **Developed by:** [DevilScrapes](https://apify.com/devilscrapes) (community)
- **Categories:** E-commerce
- **Stats:** 2 total users, 1 monthly users, 100.0% runs succeeded, 0 bookmarks
- **User rating**: No ratings yet

## Pricing

from $2.50 / 1,000 result emitteds

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

<div align="center">
  <img src=".actor/icon.svg" width="160" alt="Devil Scrapes mark" />

## Kleinanzeigen Listings Scraper

**💰 $2.70 / 1 000 results**  ·  pay only for results  ·  no credit card to try

*We do the dirty work so your dataset stays clean.* 😈

Scrape eBay Kleinanzeigen (kleinanzeigen.de) listings by keyword — title, price, location, image, and seller type from Germany's #1 classifieds marketplace. No login needed. Export clean, deduped JSON, CSV, or Excel rows for resale research or price tracking.

</div>

***

### 🎯 What this scrapes

eBay Kleinanzeigen is Germany's #1 classifieds marketplace for secondhand and consumer goods — hundreds of thousands of live listings, no public API. This Actor runs a keyword search, walks every result page, and pulls each listing's title, price (EUR or "VB"/negotiable), location with postal code, image, shipping availability, and whether the seller is a private individual or a commercial (PRO) account. Search as many keywords as you like in one run — results are merged and deduped by ad ID across pages and keywords.

### 🔥 What we handle for you

- 🛡️ **Browser fingerprint rotation** — `curl-cffi` impersonates real Chrome / Firefox / Safari TLS handshakes so the target sees a browser, not Python.
- 🌐 **Residential proxy rotation** via Apify Proxy — fresh session and exit IP on every block.
- 🔁 **Retries with exponential backoff** on `408 / 429 / 5xx` — up to 5 attempts per page, `Retry-After` honoured.
- 🧱 **Rate-limit-aware pacing** — when the target pushes back, we slow down instead of getting banned.
- 🧊 **Clean, typed dataset rows** — Pydantic-validated, ISO-8601 timestamps, stable IDs, JSON / CSV / Excel export straight from the Apify Console.
- 💰 **Pay-Per-Event pricing** — you only pay for results that hit your dataset. No data, no charge.

### 💡 Use cases

- Resale arbitrage — track underpriced secondhand listings by keyword across Germany.
- Market research — benchmark asking prices for a product category over time.
- Lead generation — build a directory of PRO/commercial sellers active on a keyword.
- Price-drop alerts — diff successive runs to catch reductions on watched searches.

### ⚙️ How to use it

1. Click **Try for free** at the top of the page.
2. Fill in the input form — most fields have sensible defaults.
3. Click **Start**. Output streams into the run's dataset.
4. Export from **Storage → Dataset** as JSON, CSV, or Excel — or fetch via the API.

### 📥 Input

| Field | Type | Required | Default | Notes |
|---|---|:--:|---|---|
| `keywords` | `array` | **yes** | \['fahrrad', 'laptop'] | One or more search terms, e.g. <code>\["fahrrad", "laptop"]</code>. The Actor runs one keyword search per entry and… |
| `maxItems` | `integer` | no | 50 | Hard cap on dataset rows across all keywords combined. |
| `proxyConfiguration` | `object` | no | {'useApifyProxy': True, 'apifyProxyGroups': \['RESIDENTIAL']} | Apify Proxy spec. No anti-bot signature has been observed on Kleinanzeigen's search pages, so a datacenter group works… |

#### Example input

```json
{
  "keywords": [
    "fahrrad"
  ],
  "maxItems": 5,
  "proxyConfiguration": {
    "useApifyProxy": true,
    "apifyProxyGroups": [
      "RESIDENTIAL"
    ]
  }
}
```

### 📤 Output

Every row is one dataset item.

| Field | Type | Notes |
|---|---|---|
| `ad_id` | `integer` | Kleinanzeigen ad ID, from the result card's data-adid attribute. |
| `title` | `string` | Listing headline. |
| `description_snippet` | `['string', 'null']` | Short description snippet from the result card or its JSON-LD block. |
| `price_amount` | `['number', 'null']` | Parsed EUR amount. null when the price is "VB" (negotiable) or blank (give-away) — see price\_raw. |
| `price_raw` | `string` | Raw price text exactly as shown, e.g. "150 €", "VB", or "" (always populated). |
| `currency` | `string` | ISO-4217 currency code — always EUR. |
| `location` | `['string', 'null']` | Full location text next to the pin icon, e.g. "48691 Vreden". |
| `postal_code` | `['string', 'null']` | 5-digit German postal code split from location when cleanly parseable, otherwise null. |
| `image_url` | `['string', 'null']` | Listing thumbnail/photo URL from the card's JSON-LD block. |
| `url` | `string` | Absolute URL to the listing detail page. |
| `is_shipping_available` | `boolean` | True when the card carries a DHL shipping-available marker. |
| `is_commercial_seller` | `boolean` | True when the card carries a PRO/commercial-seller badge or shop link. |
| `scraped_at` | `string` | ISO-8601 UTC timestamp when this row was recorded. |

#### Example output

```json
{
  "ad_id": 2843810004,
  "title": "Reparatur von Grafikkarten, Laptops, Konsolen uvm.",
  "description_snippet": "Biete Reparatur von Laptops und Grafikkarten an...",
  "price_amount": 150.0,
  "price_raw": "150 \u20ac",
  "currency": "EUR",
  "location": "48691 Vreden",
  "postal_code": "48691",
  "image_url": "https://img.kleinanzeigen.de/api/v1/prod-ads/images/...",
  "url": "https://www.kleinanzeigen.de/s-anzeige/reparatur-von-grafikkarten-laptops-konsolen-uvm/2843810004-...",
  "is_shipping_available": true,
  "is_commercial_seller": false,
  "scraped_at": "2026-09-19T12:00:00.000Z"
}
```

### 💰 Pricing

Pay-Per-Event — you pay only when these events fire:

| Event | USD | What it is |
|---|---:|---|
| `actor-start` | $0.2 | One-off warm-up charge per run |
| `result` | $0.0025 | Per dataset item |

Example: 1 000 results at the rates above ≈ **$2.70**. No subscription, no minimum, no card to start — Apify gives every new account $5 of free credit.

### 🚧 Limitations

- v1 supports keyword search only — the category-browse URL shape is not implemented.
- No location\_filter/radius/postal-code query parameter yet.
- Only list-card fields are scraped — no item-detail-page enrichment (full description, seller history, phone).
- HTML-only: Kleinanzeigen publishes no public JSON API.

### ❓ FAQ

**Do I need to log in or provide cookies?**

No. Kleinanzeigen's keyword search and listing cards are public — the Actor needs no account, cookies, or login.

**What happens if a keyword has no results?**

The run finishes successfully with zero rows for that keyword and moves to the next one — an empty search is not an error.

**Can I search multiple keywords in one run?**

Yes — add as many entries to keywords as you like; results are merged and deduped by ad ID across the whole run.

### 💬 Your feedback

Spotted a bug, hit a weird edge case, or need a new field? Open an
issue on the Actor's **Issues** tab on Apify Console — we ship
fixes weekly and we read every report.

***

<div align="center">

Built by **[Devil Scrapes](https://apify.com/DevilScrapes)** 😈 — a small fleet of
opinionated public-data Actors. Honest pricing, real engineering, zero fine print.

</div>

# Changelog

This Actor's version history is a separate document: https://apify.com/devilscrapes/kleinanzeigen-scraper/changelog.md

# Actor input Schema

## `keywords` (type: `array`):

One or more search terms, e.g. <code>\["fahrrad", "laptop"]</code>. The Actor runs one keyword search per entry and merges the results, deduping by ad ID.

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

Hard cap on dataset rows across all keywords combined.

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

Apify Proxy spec. No anti-bot signature has been observed on Kleinanzeigen's search pages, so a datacenter group works — but the group must always be explicit, never a bare on/off toggle.

## Actor input object example

```json
{
  "keywords": [
    "fahrrad",
    "laptop"
  ],
  "maxItems": 50,
  "proxyConfiguration": {
    "useApifyProxy": true,
    "apifyProxyGroups": [
      "RESIDENTIAL"
    ],
    "apifyProxyCountry": "DE"
  }
}
```

# Actor output Schema

## `datasetItems` (type: `string`):

All dataset items as JSON.

## `datasetItemsCsv` (type: `string`):

Same data exported to CSV.

## `datasetView` (type: `string`):

Open the run dataset in the Console.

# 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 = {
    "keywords": [
        "fahrrad",
        "laptop"
    ],
    "maxItems": 50,
    "proxyConfiguration": {
        "useApifyProxy": true,
        "apifyProxyGroups": [
            "RESIDENTIAL"
        ],
        "apifyProxyCountry": "DE"
    }
};

// Run the Actor and wait for it to finish
const run = await client.actor("devilscrapes/kleinanzeigen-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 = {
    "keywords": [
        "fahrrad",
        "laptop",
    ],
    "maxItems": 50,
    "proxyConfiguration": {
        "useApifyProxy": True,
        "apifyProxyGroups": ["RESIDENTIAL"],
        "apifyProxyCountry": "DE",
    },
}

# Run the Actor and wait for it to finish
run = client.actor("devilscrapes/kleinanzeigen-scraper").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 '{
  "keywords": [
    "fahrrad",
    "laptop"
  ],
  "maxItems": 50,
  "proxyConfiguration": {
    "useApifyProxy": true,
    "apifyProxyGroups": [
      "RESIDENTIAL"
    ],
    "apifyProxyCountry": "DE"
  }
}' |
apify call devilscrapes/kleinanzeigen-scraper --silent --output-dataset

```

## MCP server setup

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

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/uwMxsd8aGI35hPrJH/builds/kdVKW6byohgbHc5yw/openapi.json
