# Kleinanzeigen Scraper — Germany Classifieds & Prices (`noahadler/kleinanzeigen-germany-scraper`) Actor

Scrape Kleinanzeigen.de (eBay Kleinanzeigen) by keyword and city: title, price, location, seller type, shipping and ad URL. Germany marketplace research and leads. Use Apify RESIDENTIAL + DE if you hit blocks.

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

## Pricing

from $1.50 / 1,000 ads

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

## Kleinanzeigen Scraper — Germany Classified Ads

**Kleinanzeigen scraper** / **eBay Kleinanzeigen API** for **Germany classified listings**: extract ads from **kleinanzeigen.de** by keyword and city with title, price, location, seller type (Privat/PRO), shipping flag and ad URL.

Ideal if you search for a **Kleinanzeigen API**, **Kleinanzeigen.de scraper**, **Berlin classifieds export**, or Germany **marketplace lead generation**.

> **⚠️ For users**\
> Kleinanzeigen can captcha/block datacenter IPs.\
> Leave **Apify RESIDENTIAL** ON and set country **Germany (`DE`)** if blocked.\
> You don’t install a proxy on your PC.

**Why this Actor:** Keyword + city · Angebote filter · Pagination · Seller / shipping signals · DE marketplace focus

***

### Table of contents

1. [What this Actor does](#what-this-actor-does)
2. [What you get](#what-you-get)
3. [Features](#features)
4. [Input](#input)
5. [Output example](#output-example)
6. [Output fields](#output-fields)
7. [Quick start (API)](#quick-start-api)
8. [Use cases](#use-cases)
9. [Limitations](#limitations)
10. [FAQ](#faq)
11. [Keywords](#keywords)

***

### What this Actor does

| Step | Action |
|------|--------|
| 1 | Build Suche URLs (keyword + city + Angebote) |
| 2 | Parse cards (`article[data-adid]`) |
| 3 | Paginate with `seite:N` |
| 4 | Return clean listing fields |

***

### What you get

**Ad content**

- Title, description snippet, image
- Price (EUR), VB / gift handling

**Place & seller**

- Location text (PLZ + area when shown)
- `sellerType` (private / business)
- Shipping available flag

***

### Features

| Capability | Detail |
|------------|--------|
| **Keywords** | Multi-term batch |
| **City filter** | Berlin, München, Hamburg, … |
| **URL paste** | Full Suche URLs override builders |
| **Offers only** | `anzeige:angebote` by default |
| **Proxy-ready** | RESIDENTIAL + DE defaults |

***

### Input

| Field | Required | Description |
|-------|----------|-------------|
| `keywords` | Cond. | Search terms |
| `location` | No | German city |
| `searchUrls` | Cond. | Full Suche URLs |
| `maxItems` / `maxPages` | No | Caps |
| `offersOnly` | No | Default true |
| `proxyConfiguration` | Recommended | RESIDENTIAL + DE |

#### Example — iPhone in Berlin

```json
{
  "keywords": ["iphone"],
  "location": "Berlin",
  "maxItems": 50,
  "proxyConfiguration": {
    "useApifyProxy": true,
    "apifyProxyGroups": ["RESIDENTIAL"],
    "apifyProxyCountry": "DE"
  }
}
```

***

### Output example

```json
{
  "listingId": "3494462718",
  "listingUrl": "https://www.kleinanzeigen.de/s-anzeige/.../3494462718-173-3353",
  "title": "iPhone SE 2022 I 128GB",
  "price": 219,
  "currency": "EUR",
  "location": "10247 Friedrichshain",
  "sellerType": "business",
  "shippingAvailable": true
}
```

***

### Output fields

| Field | Notes |
|-------|--------|
| `listingId`, `listingUrl`, `title` | Identity |
| `price`, `priceText`, `priceType`, `currency` | Pricing |
| `location` | PLZ / area string |
| `sellerType` | `private` / `business` |
| `shippingAvailable` | bool when detected |
| `imageUrl`, `description`, `scrapedAt` | Extra |

***

### Quick start (API)

```python
from apify_client import ApifyClient

client = ApifyClient("<YOUR_TOKEN>")
run = client.actor("YOUR_USERNAME/kleinanzeigen-germany-scraper").call(
    run_input={
        "keywords": ["macbook"],
        "location": "Hamburg",
        "maxItems": 40,
        "proxyConfiguration": {
            "useApifyProxy": True,
            "apifyProxyGroups": ["RESIDENTIAL"],
            "apifyProxyCountry": "DE",
        },
    }
)
for item in client.dataset(run["defaultDatasetId"]).iterate_items():
    print(item)
```

***

### Use cases

- Second-hand price research in Germany
- Lead lists for local services / goods
- Brand / model availability monitoring
- Cross-check vs eBay.de sold comps

***

### Limitations

- Captcha may require RESIDENTIAL + DE.
- Phone/email usually behind login — not on search cards.
- Keyword+city geo is broader than the official location picker sometimes.
- Respect Kleinanzeigen Terms of Service.

***

### FAQ

**Nationwide search?**\
Leave `location` empty.

**Gesuche included?**\
Set `offersOnly: false`.

**404 on custom URL?**\
Prefer official Suche URLs from the browser, or keyword + city builder.

***

### Keywords

kleinanzeigen, kleinanzeigen scraper, ebay kleinanzeigen, kleinanzeigen.de api, germany classifieds, berlin kleinanzeigen, marketplace germany scraper

# Actor input Schema

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

Search terms (1–10). Each keyword runs as its own search.

## `location` (type: `string`):

German city slug or name. Examples: Berlin, München, hamburg. Leave empty for nationwide.

## `searchUrls` (type: `array`):

Optional full Suche URLs. Overrides keyword/location when set.

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

Maximum ads to return (1–500).

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

Maximum result pages to visit per search.

## `offersOnly` (type: `boolean`):

When true, filter to anzeige:angebote (exclude Gesuche).

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

FOR USERS: if you get captcha/403, keep Apify Proxy ON, choose RESIDENTIAL, set country Germany (DE). You do not install a proxy on your PC.

## Actor input object example

```json
{
  "keywords": [
    "iphone"
  ],
  "location": "Berlin",
  "maxItems": 50,
  "maxPages": 5,
  "offersOnly": true,
  "proxyConfiguration": {
    "useApifyProxy": true,
    "apifyProxyGroups": [
      "RESIDENTIAL"
    ],
    "apifyProxyCountry": "DE"
  }
}
```

# Actor output Schema

## `listings` (type: `string`):

Germany classified listings.

# 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": [
        "iphone"
    ],
    "location": "Berlin"
};

// Run the Actor and wait for it to finish
const run = await client.actor("noahadler/kleinanzeigen-germany-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": ["iphone"],
    "location": "Berlin",
}

# Run the Actor and wait for it to finish
run = client.actor("noahadler/kleinanzeigen-germany-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": [
    "iphone"
  ],
  "location": "Berlin"
}' |
apify call noahadler/kleinanzeigen-germany-scraper --silent --output-dataset

```

## MCP server setup

```json
{
    "mcpServers": {
        "apify": {
            "type": "http",
            "url": "https://mcp.apify.com/?tools=fetch-actor-details,noahadler/kleinanzeigen-germany-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/vlmWoKWbKFyJfy4HR/builds/DA9ilf2jg8tEwkDak/openapi.json
