# Funda.nl Real Estate Scraper (`jungle_synthesizer/funda-scraper`) Actor

Scrape Dutch real-estate listings from Funda.nl — price, living area, plot size, rooms, bedrooms, energy label, address, city, neighborhood, images, and agent.

- **URL**: https://apify.com/jungle\_synthesizer/funda-scraper.md
- **Developed by:** [BowTiedRaccoon](https://apify.com/jungle_synthesizer) (community)
- **Categories:** Real estate
- **Stats:** 2 total users, 0 monthly users, 100.0% runs succeeded, 0 bookmarks
- **User rating**: No ratings yet

## Pricing

Pay per event

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

## Funda.nl Real Estate Scraper

Extract Dutch property listings from [Funda.nl](https://www.funda.nl) — the Netherlands' largest real estate platform. Provide your own search URLs or use the default nationwide for-sale search. For each listing the scraper returns the full set of advertised details: price, address, city, neighborhood, postal code, living area, plot area, rooms, bedrooms, energy label, property type, construction year, agent details, description, and images.

### What does it scrape?

- **For-sale listings (koop)** — houses, apartments, and other residential properties listed for purchase
- **Rental listings (huur)** — long-term residential rentals

For each property card the scraper follows the detail URL and extracts:

| Field | Description |
|---|---|
| `url` | Listing URL on funda.nl |
| `listing_id` | Funda listing identifier |
| `title` | Listing title (address + city) |
| `address` | Street address |
| `city` | City name |
| `neighborhood` | Neighborhood or district |
| `postal_code` | Dutch postal code |
| `price` | Asking price as displayed (e.g. "€ 450.000 k.k.") |
| `price_raw` | Numeric price value in euros |
| `living_area_m2` | Living area in square metres |
| `plot_area_m2` | Plot area in square metres |
| `rooms` | Total number of rooms |
| `bedrooms` | Number of bedrooms |
| `energy_label` | Dutch energy efficiency label (A++, A+, A … G) |
| `listing_type` | Transaction type: koop or huur |
| `property_type` | Property type (woonhuis, appartement, etc.) |
| `construction_year` | Year of construction |
| `images` | Image URLs (JSON array string) |
| `agent_name` | Name of the real estate agent |
| `agent_url` | URL to the agent's funda.nl profile |
| `description` | Full listing description text |
| `status` | Listing status (beschikbaar, verkocht, etc.) |
| `scraped_at` | ISO 8601 timestamp of when this record was scraped |

### How to use it

#### Default run

Leave **Start URLs** empty to scrape the nationwide for-sale search. Set **Max Items** to control how many listings to collect.

#### Custom search URLs

Paste any Funda.nl search URL into **Start URLs**. You can filter by city, region, price range, property type, etc. directly on funda.nl and then copy the URL.

Examples:

- Amsterdam for-sale: `https://www.funda.nl/zoeken/kopen/?selected_area=[%22amsterdam%22]`
- Rotterdam rentals: `https://www.funda.nl/zoeken/huur/?selected_area=[%22rotterdam%22]`
- Nationwide rentals: `https://www.funda.nl/zoeken/huur/?selected_area=[%22nederland%22]`

You can also provide direct listing detail URLs to scrape individual properties.

#### Listing type

Set **Listing Type** to `kopen` (for sale, default) or `huur` (for rent). This setting is used when building default search URLs.

### Input configuration

| Parameter | Type | Default | Description |
|---|---|---|---|
| `maxItems` | integer | 10 | Maximum number of listings to scrape |
| `startUrls` | array | NL nationwide | Funda.nl search or listing URLs |
| `listingType` | string | kopen | `kopen` (for sale) or `huur` (for rent) |

### Technical notes

Funda.nl uses Akamai Bot Manager to protect its listings. This scraper uses a full Playwright (Chrome) browser with Netherlands residential proxies to reliably bypass the protection and retrieve real listing data. Memory usage is higher than a standard scraper due to the browser requirement.

### Output

Results are stored in the **Dataset** tab of your run. Download as JSON, CSV, JSONL, or Excel from the Apify console.

# Actor input Schema

## `sp_intended_usage` (type: `string`):

Please describe how you plan to use the data extracted by this crawler.

## `sp_improvement_suggestions` (type: `string`):

Provide any feedback or suggestions for improvements.

## `sp_contact` (type: `string`):

Provide your email address so we can get in touch with you.

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

Maximum number of listings to scrape (across all pages)

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

Funda.nl search or listing URLs to crawl. Leave empty to use the default Dutch nationwide for-sale listings.

## `listingType` (type: `string`):

Type of listings to scrape: 'kopen' (for sale) or 'huur' (for rent)

## Actor input object example

```json
{
  "sp_intended_usage": "Describe your intended use...",
  "sp_improvement_suggestions": "Share your suggestions here...",
  "sp_contact": "Share your email here...",
  "maxItems": 10,
  "startUrls": [
    {
      "url": "https://www.funda.nl/zoeken/kopen/?selected_area=[%22nederland%22]&search_result=1"
    }
  ],
  "listingType": "kopen"
}
```

# Actor output Schema

## `results` (type: `string`):

No description

# 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 = {
    "sp_intended_usage": "Describe your intended use...",
    "sp_improvement_suggestions": "Share your suggestions here...",
    "sp_contact": "Share your email here...",
    "maxItems": 10,
    "startUrls": [
        {
            "url": "https://www.funda.nl/zoeken/kopen/?selected_area=[%22nederland%22]&search_result=1"
        }
    ],
    "listingType": "kopen"
};

// Run the Actor and wait for it to finish
const run = await client.actor("jungle_synthesizer/funda-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 = {
    "sp_intended_usage": "Describe your intended use...",
    "sp_improvement_suggestions": "Share your suggestions here...",
    "sp_contact": "Share your email here...",
    "maxItems": 10,
    "startUrls": [{ "url": "https://www.funda.nl/zoeken/kopen/?selected_area=[%22nederland%22]&search_result=1" }],
    "listingType": "kopen",
}

# Run the Actor and wait for it to finish
run = client.actor("jungle_synthesizer/funda-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 '{
  "sp_intended_usage": "Describe your intended use...",
  "sp_improvement_suggestions": "Share your suggestions here...",
  "sp_contact": "Share your email here...",
  "maxItems": 10,
  "startUrls": [
    {
      "url": "https://www.funda.nl/zoeken/kopen/?selected_area=[%22nederland%22]&search_result=1"
    }
  ],
  "listingType": "kopen"
}' |
apify call jungle_synthesizer/funda-scraper --silent --output-dataset

```

## MCP server setup

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

```

## OpenAPI specification

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