# Kleinanzeigen | kleinanzeigen.de – Real Estate Scraper Germany (`vuzol/de-real-estate-rent`) Actor

Scrape rental apartment listings from Kleinanzeigen.de. Extract cold/warm rent, size, rooms, address, photos, seller contact, phone numbers, listing details and URLs. Filter by city, seller type (private landlords or agencies). Ideal for real estate lead generation and market research.

- **URL**: https://apify.com/vuzol/de-real-estate-rent.md
- **Developed by:** [Vuzol Data](https://apify.com/vuzol) (community)
- **Categories:** Lead generation, Real estate, Other
- **Stats:** 4 total users, 1 monthly users, 93.9% runs succeeded, 0 bookmarks
- **User rating**: No ratings yet

## Pricing

from $2.00 / 1,000 results

This Actor is paid per event and usage. You are charged both the fixed price for specific events and for Apify platform usage.

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

## kleinanzeigen.de Rental Property Scraper — Germany (Wohnungen mieten)

Extract **rental apartment and house listings** from [kleinanzeigen.de](https://www.kleinanzeigen.de) — Germany's #1 classifieds platform for Wohnungen mieten, with millions of active listings updated daily.

Get structured data from every listing page: cold & warm rent, full address, seller phone, photos, amenities, and the complete description — everything a human would read on the page, delivered as clean JSON.

***

### What you get

Every listing is a rich JSON object with **23 fields**:

#### 💰 Pricing

| Field | Example |
|---|---|
| `price` | `510 €` — monthly cold rent |
| `price_raw` | `510` — same as a number, ready for math |
| `price_warm` | `680 €` — total rent including utilities |
| `additional_costs` | `80 €` — Nebenkosten |
| `heating_costs` | `80 €` — Heizkosten |

#### 🏠 Property details

| Field | Example |
|---|---|
| `size_m2` | `60 m²` |
| `rooms` | `3` |
| `floor` | `1` |
| `property_type` | `Etagenwohnung` |
| `features` | `["Balkon", "Einbauküche", "Keller", "Haustiere erlaubt"]` |

#### 📍 Location

| Field | Example |
|---|---|
| `street` | `Poststr. 4/4a,` |
| `locality` | `19273 Niedersachsen - Amt Neuhaus` |

#### 👤 Seller

| Field | Example |
|---|---|
| `seller_name` | `Hausverwaltung Hamann` |
| `seller_type` | `Gewerblicher Nutzer` or `Privater Nutzer` |
| `phone` | `038841/61 59 80` |

#### 📸 Media & metadata

| Field | Example |
|---|---|
| `images` | Array of full-resolution photo URLs |
| `description` | Full listing text including energy info |
| `date_posted` | `03.06.2026` |
| `ad_id` | `3316609852` |
| `url` | Direct link to the listing |

***

### How to use it

#### Basic run

Select a region and seller type, set how many listings you need — click Run.

```json
{
  "sellerType": "all",
  "region": "berlin",
  "maxItems": 500
}
```

#### Only new listings (for scheduled runs)

Enable `onlyNew` to skip listings you've already collected. Perfect for daily alerts — you pay only for fresh data, not duplicates.

```json
{
  "sellerType": "private",
  "region": "nordrhein-westfalen",
  "onlyNew": true,
  "maxItems": 0
}
```

#### All of Germany, no limit

```json
{
  "sellerType": "all",
  "region": "",
  "maxItems": 0
}
```

***

### Output example

```json
{
  "ad_id": "3316609852",
  "title": "gemütliche 3-Zimmer DG-Wohnung im Herzen Neuhaus",
  "price": "510 €",
  "price_raw": "510",
  "price_warm": "680 €",
  "additional_costs": "80 €",
  "heating_costs": "80 €",
  "size_m2": "60 m²",
  "rooms": "3",
  "floor": "1",
  "property_type": "Dachgeschosswohnung",
  "street": "Poststr. 4/4a,",
  "locality": "19273 Niedersachsen - Amt Neuhaus",
  "features": ["Einbauküche"],
  "images": [
    "https://img.kleinanzeigen.de/api/v1/prod-ads/images/d9/d9f16eaf...?rule=$_27.AUTO",
    "https://img.kleinanzeigen.de/api/v1/prod-ads/images/da/da1cd9a6...?rule=$_27.AUTO"
  ],
  "description": "Die gemütliche Wohnung im Dachgeschoss des denkmalgeschätzten Fachwerk-Hauses...",
  "seller_name": "Hausverwaltung Hamann",
  "seller_type": "Gewerblicher Nutzer",
  "phone": "038841/615 98-0",
  "date_posted": "03.06.2026",
  "url": "https://www.kleinanzeigen.de/s-anzeige/..."
}
```

***

### Performance & cost

| Listings | Time on Apify | Proxy cost (Residential DE) |
|---|---|---|
| 100 | ~15 sec | ~$0.02 |
| 1,000 | ~2 min | ~$0.20 |
| 10,000 | ~15 min | ~$2.00 |
| All Germany (~80k) | ~2 hours | ~$16 |

**Tip:** Apify Residential Proxy (Germany) is strongly recommended for runs above 500 listings. Without it, kleinanzeigen.de rate-limits scraping after a few hundred requests.

***

### Popular use cases

- **Market research** — track average rent per m² in Berlin, Munich, or any Bundesland over time
- **Investment analysis** — compare gross rental yields across German cities
- **Lead generation** — build a contact list of landlords and property agencies
- **Price alert service** — run daily with `onlyNew: true`, push new listings to Telegram or email
- **Real estate portal** — aggregate listings from kleinanzeigen alongside other German platforms
- **Academic research** — study the German rental market, gentrification, supply/demand

***

### Available regions

All 16 German federal states: Berlin · Hamburg · Bayern · Nordrhein-Westfalen · Baden-Württemberg · Hessen · Niedersachsen · Sachsen · Brandenburg · Rheinland-Pfalz · Schleswig-Holstein · Thüringen · Sachsen-Anhalt · Mecklenburg-Vorpommern · Saarland · Bremen — or all of Germany at once.

# Actor input Schema

## `sellerType` (type: `string`):

Filter listings by seller type: all, private individuals only, or agencies only.

## `region` (type: `string`):

Filter by German federal state. Leave empty to search all of Germany.

## `onlyNew` (type: `boolean`):

When enabled, skips listings already collected in previous runs. Ideal for scheduled runs — you only pay for fresh data.

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

Maximum number of listings to scrape. Set to 0 for no limit. Warning: values above 5000 use significant proxy traffic (~$0.20 per 1000 items with residential proxy).

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

Provide pre-filtered kleinanzeigen.de search URLs to override all other settings.

## `proxyConfig` (type: `object`):

Apify proxy is recommended for large runs. Use Residential (DE) for best results.

## Actor input object example

```json
{
  "sellerType": "all",
  "region": "",
  "onlyNew": false,
  "maxItems": 100
}
```

# Actor output Schema

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

All scraped rental listings — one item per apartment.

# 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 = {};

// Run the Actor and wait for it to finish
const run = await client.actor("vuzol/de-real-estate-rent").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 = {}

# Run the Actor and wait for it to finish
run = client.actor("vuzol/de-real-estate-rent").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 '{}' |
apify call vuzol/de-real-estate-rent --silent --output-dataset

```

## MCP server setup

```json
{
    "mcpServers": {
        "apify": {
            "command": "npx",
            "args": [
                "mcp-remote",
                "https://mcp.apify.com/?tools=vuzol/de-real-estate-rent",
                "--header",
                "Authorization: Bearer <YOUR_API_TOKEN>"
            ]
        }
    }
}

```

## OpenAPI specification

Download the OpenAPI definition: https://api.apify.com/v2/acts/blld1yxyncBYCEdI1/builds/REs4PaJH1UBfelbrs/openapi.json
