# Kamernet Scraper — Dutch Rooms & Apartments (`jarvismoney/kamernet-scraper`) Actor

Scrape rental listings from Kamernet.nl: rooms, apartments and studios with prices, sizes, availability dates, deposits and exact locations. Supports filters and a new-listings-only monitoring mode.

- **URL**: https://apify.com/jarvismoney/kamernet-scraper.md
- **Developed by:** [Philipp Merz](https://apify.com/jarvismoney) (community)
- **Categories:** Real estate
- **Stats:** 2 total users, 0 monthly users, 100.0% runs succeeded, 0 bookmarks
- **User rating**: No ratings yet

## Pricing

from $4.00 / 1,000 results

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 a software tools running on the Apify platform, for all kinds of web data extraction and automation use cases.
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.

In JavaScript/TypeScript projects, use official [JavaScript/TypeScript client](https://docs.apify.com/api/client/js.md):

```bash
npm install apify-client
```

In Python projects, use official [Python client library](https://docs.apify.com/api/client/python.md):

```bash
pip install apify-client
```

In shell scripts, use [Apify CLI](https://docs.apify.com/cli/docs.md):

````bash
# MacOS / Linux
curl -fsSL https://apify.com/install-cli.sh | bash
# Windows
irm https://apify.com/install-cli.ps1 | iex
```bash

In AI frameworks, you might use the [Apify MCP server](https://docs.apify.com/platform/integrations/mcp.md).

If your project is in a different language, use 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

## Kamernet Scraper — Dutch Rooms, Apartments & Studios

Extract rental listings from **[Kamernet.nl](https://kamernet.nl)**, the largest room-rental platform in the Netherlands, as clean structured JSON. Search any city, filter by rent, size and property type, and get every field that matters: price, surface area, availability dates, deposit, exact address with GPS coordinates, house rules and photos.

Built for the Dutch housing market's #1 problem: **speed**. Rooms in Amsterdam or Utrecht are gone within hours — the built-in **monitoring mode** outputs only listings that are new since your last run, so you can pipe fresh listings straight into alerts, a Slack channel or your own app within minutes of them going live.

### What you get

Each listing is one JSON object:

```json
{
  "listingId": 2380154,
  "url": "https://kamernet.nl/en/for-rent/room-amsterdam/gerard-schaepstraat/room-2380154",
  "listingType": "room",
  "city": "Amsterdam",
  "street": "Gerard Schaepstraat",
  "postalCode": "1052GK",
  "latitude": 52.379791,
  "longitude": 4.875219,
  "totalRentalPrice": 1503,
  "currency": "EUR",
  "utilitiesIncluded": false,
  "deposit": 2750,
  "agencyFee": 250,
  "surfaceArea": 84,
  "furnishing": "unfurnished",
  "availabilityStartDate": "2026-07-01T00:00:00",
  "availabilityEndDate": null,
  "title": "In search of a roommate",
  "description": "LOOKING FOR ROOMMATE / ROOM AVAILABLE in shared flat…",
  "candidatePetsAllowed": false,
  "candidateSmokingAllowed": false,
  "isNewAdvert": true,
  "imageUrls": ["https://resources.kamernet.nl/image/…"],
  "scrapedAt": "2026-07-02T21:40:00.000Z"
}
````

Turn off **Fetch full details** for a faster, cheaper run with the core fields only (price, size, type, street, availability, photo).

### Use cases

- **Rental alerts** — run on a 15–30 min schedule with *New listings only* enabled; connect a webhook, Zapier/Make, or email integration and beat the crowd to every new room.
- **Market research** — rent per m² by city or neighbourhood, supply trends, furnishing and deposit statistics across the NL housing shortage.
- **Relocation & expat services** — feed live inventory for clients moving to the Netherlands.
- **Aggregators & portals** — keep your Dutch rental coverage complete and current.

### Input

| Field | Type | Notes |
|---|---|---|
| `cities` | array | One or more Dutch cities, e.g. `["Amsterdam", "Utrecht", "Den Haag"]` |
| `listingTypes` | array | Any of `room`, `apartment`, `studio`; empty = all |
| `maxRentEur` | integer | Max monthly rent in € (Kamernet filters in €100 steps) |
| `minSizeM2` | integer | Minimum surface in m² |
| `radiusKm` | integer | 1, 2, 5, 10 or 20 km around the city |
| `sort` | string | `newest` (default), `cheapest`, `most_expensive` |
| `maxListings` | integer | Cap per run (default 200) — keeps costs predictable |
| `fetchDetails` | boolean | Full record incl. description, address, deposit, coordinates (default `true`) |
| `newListingsOnly` | boolean | Monitoring mode: only listings not seen in previous runs of the same search |
| `language` | string | `en` (default) or `nl` for title/description |

Minimal example:

```json
{
  "cities": ["Utrecht"],
  "maxRentEur": 900,
  "newListingsOnly": true
}
```

### Monitoring mode — how it works

With `newListingsOnly` enabled, the actor remembers which listing IDs it has already output **per search configuration** (same cities + filters = same memory). Each run outputs only genuinely new listings — no client-side deduplication needed. Change the filters and you get a fresh memory automatically.

Typical setup: schedule the actor every 15–30 minutes, add the platform's **webhook or email integration** on new dataset items, and you have a real-time Kamernet alert service for exactly the search you care about.

### Export & integrations

Results land in an Apify dataset — export as **JSON, CSV, Excel or XML** with one click or via API, or connect **Zapier, Make, Slack, Google Sheets, webhooks** and the other platform integrations.

```bash
## Run via API and get JSON back
curl -X POST "https://api.apify.com/v2/acts/<ACTOR_ID>/run-sync-get-dataset-items?token=<YOUR_TOKEN>" \
  -H "Content-Type: application/json" \
  -d '{"cities": ["Amsterdam"], "maxRentEur": 1200}'
```

### Data & fair use

- Only **publicly visible listing data** is collected — the same information any visitor sees.
- **No landlord or account data**: advertiser names, photos, IDs and activity are deliberately excluded (GDPR-conscious by design).
- Respectful request rates with modest concurrency; the actor reads Kamernet's lightweight page data rather than hammering search pages.
- Listing descriptions may contain whatever the advertiser wrote; treat them accordingly if you republish.

### FAQ

**Do I need proxies?** No — Kamernet currently works without any proxy. The input has a proxy option as a safety valve should that ever change.

**How fresh is the data?** It's scraped live at run time, directly from Kamernet's own page data — no caches, no third-party APIs.

**A run returned 0 items in monitoring mode — is that a bug?** No: it means nothing new appeared since the previous run for that search. That's the signal doing its job.

**City name doesn't work?** Use the Dutch spelling Kamernet uses (e.g. `Den Haag`, not `The Hague`). The actor logs a warning when a city page can't be found.

### Support

Found an issue or missing a field you need? Open an issue on the actor's **Issues tab** — it's monitored continuously and fixes usually ship within hours, not days.

# Actor input Schema

## `cities` (type: `array`):

One or more Dutch cities to search, e.g. <code>Amsterdam</code>, <code>Utrecht</code>, <code>Den Haag</code>. City names are converted to Kamernet slugs automatically.

## `listingTypes` (type: `array`):

Which property types to include. Leave empty for all types.

## `maxRentEur` (type: `integer`):

Only listings at or below this monthly rent. Kamernet filters in €100 steps; the value is rounded up to the next step (max €5,000).

## `minSizeM2` (type: `integer`):

Only listings with at least this surface area in m².

## `radiusKm` (type: `string`):

Radius around the city to include, in km. Kamernet supports up to 5 km.

## `sort` (type: `string`):

Order in which Kamernet returns listings (affects which listings are picked up first when <b>Max listings</b> caps the run).

## `maxListings` (type: `integer`):

Stop after this many listings (per run, across all cities). Keeps costs predictable.

## `fetchDetails` (type: `boolean`):

Visit each listing's page for the full record: description, exact address, postal code, GPS coordinates, deposit, agency fee, energy label, house rules and photos. Costs one extra request per listing; turn off for a fast, cheap overview.

## `newListingsOnly` (type: `boolean`):

Only output listings not seen in previous runs with the same search settings. Ideal on a schedule (e.g. every 30 min) to feed alerts — pair with a webhook or the platform's integrations.

## `language` (type: `string`):

Preferred language for title and description. Falls back to the other language when a listing has only one.

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

Kamernet currently needs no proxy; leave as-is unless runs start failing.

## Actor input object example

```json
{
  "cities": [
    "Amsterdam"
  ],
  "listingTypes": [],
  "radiusKm": "5",
  "sort": "newest",
  "maxListings": 200,
  "fetchDetails": true,
  "newListingsOnly": false,
  "language": "en",
  "proxyConfiguration": {
    "useApifyProxy": false
  }
}
```

# 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 = {
    "cities": [
        "Amsterdam"
    ],
    "listingTypes": []
};

// Run the Actor and wait for it to finish
const run = await client.actor("jarvismoney/kamernet-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 = {
    "cities": ["Amsterdam"],
    "listingTypes": [],
}

# Run the Actor and wait for it to finish
run = client.actor("jarvismoney/kamernet-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 '{
  "cities": [
    "Amsterdam"
  ],
  "listingTypes": []
}' |
apify call jarvismoney/kamernet-scraper --silent --output-dataset

```

## MCP server setup

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

```

## OpenAPI specification

```json
{
    "openapi": "3.0.1",
    "info": {
        "title": "Kamernet Scraper — Dutch Rooms & Apartments",
        "description": "Scrape rental listings from Kamernet.nl: rooms, apartments and studios with prices, sizes, availability dates, deposits and exact locations. Supports filters and a new-listings-only monitoring mode.",
        "version": "1.0",
        "x-build-id": "U4OqKdJQTtm1EeLNo"
    },
    "servers": [
        {
            "url": "https://api.apify.com/v2"
        }
    ],
    "paths": {
        "/acts/jarvismoney~kamernet-scraper/run-sync-get-dataset-items": {
            "post": {
                "operationId": "run-sync-get-dataset-items-jarvismoney-kamernet-scraper",
                "x-openai-isConsequential": false,
                "summary": "Executes an Actor, waits for its completion, and returns Actor's dataset items in response.",
                "tags": [
                    "Run Actor"
                ],
                "requestBody": {
                    "required": true,
                    "content": {
                        "application/json": {
                            "schema": {
                                "$ref": "#/components/schemas/inputSchema"
                            }
                        }
                    }
                },
                "parameters": [
                    {
                        "name": "token",
                        "in": "query",
                        "required": true,
                        "schema": {
                            "type": "string"
                        },
                        "description": "Enter your Apify token here"
                    }
                ],
                "responses": {
                    "200": {
                        "description": "OK"
                    }
                }
            }
        },
        "/acts/jarvismoney~kamernet-scraper/runs": {
            "post": {
                "operationId": "runs-sync-jarvismoney-kamernet-scraper",
                "x-openai-isConsequential": false,
                "summary": "Executes an Actor and returns information about the initiated run in response.",
                "tags": [
                    "Run Actor"
                ],
                "requestBody": {
                    "required": true,
                    "content": {
                        "application/json": {
                            "schema": {
                                "$ref": "#/components/schemas/inputSchema"
                            }
                        }
                    }
                },
                "parameters": [
                    {
                        "name": "token",
                        "in": "query",
                        "required": true,
                        "schema": {
                            "type": "string"
                        },
                        "description": "Enter your Apify token here"
                    }
                ],
                "responses": {
                    "200": {
                        "description": "OK",
                        "content": {
                            "application/json": {
                                "schema": {
                                    "$ref": "#/components/schemas/runsResponseSchema"
                                }
                            }
                        }
                    }
                }
            }
        },
        "/acts/jarvismoney~kamernet-scraper/run-sync": {
            "post": {
                "operationId": "run-sync-jarvismoney-kamernet-scraper",
                "x-openai-isConsequential": false,
                "summary": "Executes an Actor, waits for completion, and returns the OUTPUT from Key-value store in response.",
                "tags": [
                    "Run Actor"
                ],
                "requestBody": {
                    "required": true,
                    "content": {
                        "application/json": {
                            "schema": {
                                "$ref": "#/components/schemas/inputSchema"
                            }
                        }
                    }
                },
                "parameters": [
                    {
                        "name": "token",
                        "in": "query",
                        "required": true,
                        "schema": {
                            "type": "string"
                        },
                        "description": "Enter your Apify token here"
                    }
                ],
                "responses": {
                    "200": {
                        "description": "OK"
                    }
                }
            }
        }
    },
    "components": {
        "schemas": {
            "inputSchema": {
                "type": "object",
                "required": [
                    "cities"
                ],
                "properties": {
                    "cities": {
                        "title": "Cities",
                        "type": "array",
                        "description": "One or more Dutch cities to search, e.g. <code>Amsterdam</code>, <code>Utrecht</code>, <code>Den Haag</code>. City names are converted to Kamernet slugs automatically.",
                        "items": {
                            "type": "string"
                        }
                    },
                    "listingTypes": {
                        "title": "Listing types",
                        "type": "array",
                        "description": "Which property types to include. Leave empty for all types.",
                        "items": {
                            "type": "string",
                            "enum": [
                                "room",
                                "apartment",
                                "studio"
                            ],
                            "enumTitles": [
                                "Room",
                                "Apartment",
                                "Studio"
                            ]
                        }
                    },
                    "maxRentEur": {
                        "title": "Max rent (€/month)",
                        "minimum": 100,
                        "maximum": 5000,
                        "type": "integer",
                        "description": "Only listings at or below this monthly rent. Kamernet filters in €100 steps; the value is rounded up to the next step (max €5,000)."
                    },
                    "minSizeM2": {
                        "title": "Min surface (m²)",
                        "minimum": 1,
                        "maximum": 500,
                        "type": "integer",
                        "description": "Only listings with at least this surface area in m²."
                    },
                    "radiusKm": {
                        "title": "Search radius (km)",
                        "enum": [
                            "1",
                            "2",
                            "3",
                            "4",
                            "5"
                        ],
                        "type": "string",
                        "description": "Radius around the city to include, in km. Kamernet supports up to 5 km.",
                        "default": "5"
                    },
                    "sort": {
                        "title": "Sort order",
                        "enum": [
                            "newest",
                            "cheapest",
                            "most_expensive"
                        ],
                        "type": "string",
                        "description": "Order in which Kamernet returns listings (affects which listings are picked up first when <b>Max listings</b> caps the run).",
                        "default": "newest"
                    },
                    "maxListings": {
                        "title": "Max listings",
                        "minimum": 1,
                        "maximum": 10000,
                        "type": "integer",
                        "description": "Stop after this many listings (per run, across all cities). Keeps costs predictable.",
                        "default": 200
                    },
                    "fetchDetails": {
                        "title": "Fetch full details",
                        "type": "boolean",
                        "description": "Visit each listing's page for the full record: description, exact address, postal code, GPS coordinates, deposit, agency fee, energy label, house rules and photos. Costs one extra request per listing; turn off for a fast, cheap overview.",
                        "default": true
                    },
                    "newListingsOnly": {
                        "title": "New listings only (monitoring mode)",
                        "type": "boolean",
                        "description": "Only output listings not seen in previous runs with the same search settings. Ideal on a schedule (e.g. every 30 min) to feed alerts — pair with a webhook or the platform's integrations.",
                        "default": false
                    },
                    "language": {
                        "title": "Description language",
                        "enum": [
                            "en",
                            "nl"
                        ],
                        "type": "string",
                        "description": "Preferred language for title and description. Falls back to the other language when a listing has only one.",
                        "default": "en"
                    },
                    "proxyConfiguration": {
                        "title": "Proxy",
                        "type": "object",
                        "description": "Kamernet currently needs no proxy; leave as-is unless runs start failing.",
                        "default": {
                            "useApifyProxy": false
                        }
                    }
                }
            },
            "runsResponseSchema": {
                "type": "object",
                "properties": {
                    "data": {
                        "type": "object",
                        "properties": {
                            "id": {
                                "type": "string"
                            },
                            "actId": {
                                "type": "string"
                            },
                            "userId": {
                                "type": "string"
                            },
                            "startedAt": {
                                "type": "string",
                                "format": "date-time",
                                "example": "2025-01-08T00:00:00.000Z"
                            },
                            "finishedAt": {
                                "type": "string",
                                "format": "date-time",
                                "example": "2025-01-08T00:00:00.000Z"
                            },
                            "status": {
                                "type": "string",
                                "example": "READY"
                            },
                            "meta": {
                                "type": "object",
                                "properties": {
                                    "origin": {
                                        "type": "string",
                                        "example": "API"
                                    },
                                    "userAgent": {
                                        "type": "string"
                                    }
                                }
                            },
                            "stats": {
                                "type": "object",
                                "properties": {
                                    "inputBodyLen": {
                                        "type": "integer",
                                        "example": 2000
                                    },
                                    "rebootCount": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "restartCount": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "resurrectCount": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "computeUnits": {
                                        "type": "integer",
                                        "example": 0
                                    }
                                }
                            },
                            "options": {
                                "type": "object",
                                "properties": {
                                    "build": {
                                        "type": "string",
                                        "example": "latest"
                                    },
                                    "timeoutSecs": {
                                        "type": "integer",
                                        "example": 300
                                    },
                                    "memoryMbytes": {
                                        "type": "integer",
                                        "example": 1024
                                    },
                                    "diskMbytes": {
                                        "type": "integer",
                                        "example": 2048
                                    }
                                }
                            },
                            "buildId": {
                                "type": "string"
                            },
                            "defaultKeyValueStoreId": {
                                "type": "string"
                            },
                            "defaultDatasetId": {
                                "type": "string"
                            },
                            "defaultRequestQueueId": {
                                "type": "string"
                            },
                            "buildNumber": {
                                "type": "string",
                                "example": "1.0.0"
                            },
                            "containerUrl": {
                                "type": "string"
                            },
                            "usage": {
                                "type": "object",
                                "properties": {
                                    "ACTOR_COMPUTE_UNITS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATASET_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATASET_WRITES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "KEY_VALUE_STORE_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "KEY_VALUE_STORE_WRITES": {
                                        "type": "integer",
                                        "example": 1
                                    },
                                    "KEY_VALUE_STORE_LISTS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "REQUEST_QUEUE_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "REQUEST_QUEUE_WRITES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATA_TRANSFER_INTERNAL_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATA_TRANSFER_EXTERNAL_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "PROXY_RESIDENTIAL_TRANSFER_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "PROXY_SERPS": {
                                        "type": "integer",
                                        "example": 0
                                    }
                                }
                            },
                            "usageTotalUsd": {
                                "type": "number",
                                "example": 0.00005
                            },
                            "usageUsd": {
                                "type": "object",
                                "properties": {
                                    "ACTOR_COMPUTE_UNITS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATASET_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATASET_WRITES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "KEY_VALUE_STORE_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "KEY_VALUE_STORE_WRITES": {
                                        "type": "number",
                                        "example": 0.00005
                                    },
                                    "KEY_VALUE_STORE_LISTS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "REQUEST_QUEUE_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "REQUEST_QUEUE_WRITES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATA_TRANSFER_INTERNAL_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATA_TRANSFER_EXTERNAL_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "PROXY_RESIDENTIAL_TRANSFER_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "PROXY_SERPS": {
                                        "type": "integer",
                                        "example": 0
                                    }
                                }
                            }
                        }
                    }
                }
            }
        }
    }
}
```
