# Immoweb Scraper — Belgium Property, Prices & Agencies (`logiover/immoweb-scraper`) Actor

Scrape Immoweb, Belgium's largest property portal: sale price or monthly rent with charges, bedrooms, habitable and land surface, EPC rating, full address with coordinates and the listing agency. Sale and rental. Keyless. JSON, CSV or Excel.

- **URL**: https://apify.com/logiover/immoweb-scraper.md
- **Developed by:** [Logiover](https://apify.com/logiover) (community)
- **Categories:** Real estate, Lead generation
- **Stats:** 33 total users, 8 monthly users, 100.0% runs succeeded, 1 bookmarks
- **User rating**: No ratings yet

## Pricing

from $3.50 / 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.
Since this Actor supports Apify Store discounts, the price gets lower the higher subscription plan you have.

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

## Immoweb Scraper — Belgium Property, Prices & Agencies

Export listings from **Immoweb**, Belgium's largest property portal — sale price or monthly rent, surface, bedrooms, EPC rating, full address with coordinates and the listing agency — to JSON, CSV or Excel. Keyless, no login.

### What does Immoweb Scraper do?

Immoweb hydrates each result card from a JSON payload embedded in the page, and this Actor reads that payload directly. No browser is needed, which is why it stays cheap at volume, and the data comes out already typed: prices as numbers, surfaces in m², coordinates as latitude and longitude.

Two things are handled deliberately rather than flattened away:

**Rent is not one number.** A Belgian rental advert quotes the monthly rent *and* the monthly charges separately — "€2,550 (+ €280)". Collapsing those into a single figure misstates the real cost, so `priceAmount` holds the rent and `monthlyCosts` holds the charges, with the site's own label kept alongside.

**The address is broken out.** Street, house number, postal code, locality, district, province and region each get their own column, so you can group by commune or province without parsing a single address string.

Every listing also carries the **agency** that published it, which makes this a usable prospecting list for anyone selling into Belgian real estate.

### Who is it for?

- **Estate agencies** benchmarking stock, pricing and days-on-market by commune.
- **Proptech and CRM vendors** prospecting Belgian agencies.
- **Investors** comparing yield: asking price against local rents in the same postcode.
- **Analysts** tracking price per m², EPC distribution and new-build supply.
- **Portal and app builders** who need a structured Belgian feed with coordinates.

### Use cases

- Pull every apartment for sale in Brussels' postal codes with surface and EPC.
- Compare asking price per m² between Flanders, Wallonia and Brussels.
- Build a rental yield model by joining sale and rent runs on postal code.
- List the agencies most active in a province, ranked by listing count.
- Watch new listings daily by sorting newest first and running on a schedule.

### Why use this Actor?

- **Rent and charges kept apart** — no fake "all-in" number.
- **Address fully broken out**, plus latitude and longitude.
- **EPC certificate** as its own column for energy-performance analysis.
- **Habitable and land surface** separately, so houses and apartments compare fairly.
- **Agency name and logo** on every row for lead generation.
- **Keyless and browserless** — no login, no headless Chrome, low cost per row.

### What data can you extract?

Every row carries the property ID, title and URL, transaction type, property type and subtype, price as number and label with currency and price kind, monthly charges for rentals, previous price where a reduction is shown, bedroom and room counts, habitable and land surface, EPC certificate, street, number, postal code, locality, district, province and region, latitude and longitude, agency name and logo, listing flag, virtual-tour and video flags, image count and cover image, and the last modification date.

### How to use it

1. Pick a **property type** and whether you want sale or rental.
2. Optionally list **postal codes** — "1000, 2000, 9000" — or leave empty for all of Belgium.
3. Set a price band and minimum bedrooms if you need them.
4. Choose a sort order; newest first is best for monitoring.
5. Set **Maximum results** and run, then export JSON, CSV or Excel.

### Input example

```json
{
  "propertyType": "apartment",
  "transactionType": "for-rent",
  "postalCodes": "1000, 1050, 1060",
  "maxPrice": 1800,
  "minBedrooms": 2,
  "sortBy": "newest",
  "maxResults": 1000
}
```

### Notes and limits

- Prices are asking prices and advertised rents, not transaction prices.
- Some entries are development projects rather than single units; those quote a starting price and may leave bedroom counts as a range at source.
- Street and coordinates are absent when the advertiser chose to hide the exact address — the postal code and locality are always present.
- EPC is only populated where the advertiser published a certificate.
- This Actor exports search results, not full property pages — open the property URL for the complete description and photos.
- You are responsible for how you use listing and agency data, including under GDPR when contacting agencies.

### FAQ

**Do I need an Immoweb account?**
No. The search results are public and the Actor needs nothing from you.

**How do I limit the search to one city?**
Enter its postal codes. Brussels for example is 1000 plus the surrounding communes; you can list as many as you like.

**Does it cover rentals?**
Yes. Switch the transaction to "For rent"; the monthly charges then appear in their own column.

**Is a browser required?**
No — the data is in the page source, which keeps the cost per row low.

**How am I charged?**
Pay per result — you pay for the properties delivered.

# Actor input Schema

## `propertyType` (type: `string`):

Which kind of property to search for.

## `transactionType` (type: `string`):

Sale or rental listings.

## `postalCodes` (type: `string`):

Comma-separated Belgian postal codes, e.g. "1000, 2000, 9000". Leave empty to search the whole country.

## `minPrice` (type: `integer`):

Sale price or monthly rent, depending on the transaction. 0 disables the filter.

## `maxPrice` (type: `integer`):

Sale price or monthly rent, depending on the transaction. 0 disables the filter.

## `minBedrooms` (type: `integer`):

Only return properties with at least this many bedrooms. 0 disables the filter.

## `sortBy` (type: `string`):

Result order. Newest first is the usual choice when monitoring a market.

## `maxResults` (type: `integer`):

Stop after this many properties. Immoweb renders about 60 per page and the Actor walks pages until the target is met.

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

Immoweb embeds its listings in the page source; the default datacenter proxy is enough.

## Actor input object example

```json
{
  "propertyType": "house-and-apartment",
  "transactionType": "for-sale",
  "minPrice": 0,
  "maxPrice": 0,
  "minBedrooms": 0,
  "sortBy": "newest",
  "maxResults": 500,
  "proxyConfiguration": {
    "useApifyProxy": true
  }
}
```

# Actor output Schema

## `propertyId` (type: `string`):

No description

## `title` (type: `string`):

No description

## `propertyUrl` (type: `string`):

No description

## `transactionType` (type: `string`):

No description

## `propertyType` (type: `string`):

No description

## `propertySubtype` (type: `string`):

No description

## `priceAmount` (type: `string`):

No description

## `priceLabel` (type: `string`):

No description

## `currency` (type: `string`):

No description

## `priceKind` (type: `string`):

No description

## `monthlyCosts` (type: `string`):

No description

## `previousPrice` (type: `string`):

No description

## `bedroomCount` (type: `string`):

No description

## `roomCount` (type: `string`):

No description

## `habitableSurfaceSqm` (type: `string`):

No description

## `landSurfaceSqm` (type: `string`):

No description

## `energyCertificate` (type: `string`):

No description

## `street` (type: `string`):

No description

## `streetNumber` (type: `string`):

No description

## `postalCode` (type: `string`):

No description

## `locality` (type: `string`):

No description

## `district` (type: `string`):

No description

## `province` (type: `string`):

No description

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

No description

## `latitude` (type: `string`):

No description

## `longitude` (type: `string`):

No description

## `agencyName` (type: `string`):

No description

## `agencyLogoUrl` (type: `string`):

No description

## `listingFlag` (type: `string`):

No description

## `hasVirtualTour` (type: `string`):

No description

## `hasVideo` (type: `string`):

No description

## `imageCount` (type: `string`):

No description

## `imageUrl` (type: `string`):

No description

## `lastModified` (type: `string`):

No description

## `country` (type: `string`):

No description

## `source` (type: `string`):

No description

## `scrapedAt` (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 = {
    "propertyType": "house-and-apartment",
    "transactionType": "for-sale",
    "postalCodes": "",
    "minPrice": 0,
    "maxPrice": 0,
    "minBedrooms": 0,
    "sortBy": "newest",
    "maxResults": 500,
    "proxyConfiguration": {
        "useApifyProxy": true
    }
};

// Run the Actor and wait for it to finish
const run = await client.actor("logiover/immoweb-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 = {
    "propertyType": "house-and-apartment",
    "transactionType": "for-sale",
    "postalCodes": "",
    "minPrice": 0,
    "maxPrice": 0,
    "minBedrooms": 0,
    "sortBy": "newest",
    "maxResults": 500,
    "proxyConfiguration": { "useApifyProxy": True },
}

# Run the Actor and wait for it to finish
run = client.actor("logiover/immoweb-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 '{
  "propertyType": "house-and-apartment",
  "transactionType": "for-sale",
  "postalCodes": "",
  "minPrice": 0,
  "maxPrice": 0,
  "minBedrooms": 0,
  "sortBy": "newest",
  "maxResults": 500,
  "proxyConfiguration": {
    "useApifyProxy": true
  }
}' |
apify call logiover/immoweb-scraper --silent --output-dataset

```

## MCP server setup

```json
{
    "mcpServers": {
        "apify": {
            "type": "http",
            "url": "https://mcp.apify.com/?tools=fetch-actor-details,logiover/immoweb-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/m0LEAhkyKSbmcbPnl/builds/e67TTSbpT0hSlpv4P/openapi.json
