# Immoweb Scraper — Belgium Real Estate, Prices, EPC | $1.19/1K (`bovi/immoweb-properties-scraper`) Actor

Scrape Immoweb (Belgium #1 real estate portal) by operation + location. Returns title, price, operation, property type, bedrooms, living area m², EPC/energy rating, location/postcode, agency/owner, features, URL, image URLs, and id.

- **URL**: https://apify.com/bovi/immoweb-properties-scraper.md
- **Developed by:** [Vitalii Bondarev](https://apify.com/bovi) (community)
- **Categories:** Real estate, Automation
- **Stats:** 4 total users, 1 monthly users, 100.0% runs succeeded, 0 bookmarks
- **User rating**: No ratings yet

## Pricing

from $1.15 / 1,000 properties

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/actors/running/actors-in-store.md#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 Properties Scraper

Scrape **Immoweb** (Belgium's #1 real estate portal) for property listings by operation, property type, and location. Returns rich structured data — title, price, operation (sale/rent), property type, bedrooms, living area m², EPC/energy rating, location, agency details, image URLs, and more.

### Features

- Scrape **for-sale** and **for-rent** listings across all Belgian property types (houses, apartments, land, garages, offices)
- Filter by **postal codes**, **price range**, and **minimum bedrooms**
- Returns **30+ fields per listing**: price, EPC score (A–G), surface m², agency name/logo/phone, GPS coordinates, images, publication dates, flags
- Uses Immoweb's own **internal JSON API** — clean data, no HTML parsing, no JavaScript rendering needed
- **Pay per result** — you only pay for property records actually extracted
- Handles **30 results/page** with automatic pagination up to `maxItems`

### Input

| Field | Type | Default | Description |
|-------|------|---------|-------------|
| `operation` | select | `for-sale` | `for-sale` or `for-rent` |
| `propertyType` | select | `house` | `house`, `apartment`, `land`, `garage`, `office`, `industry` |
| `postalCodes` | string | (all Belgium) | Comma-separated Belgian postal codes, e.g. `1000,1030,1050` for Brussels, `9000` for Ghent, `2000` for Antwerp |
| `priceMin` | integer | — | Minimum price (EUR) |
| `priceMax` | integer | — | Maximum price (EUR) |
| `minBedrooms` | integer | — | Minimum number of bedrooms |
| `maxItems` | integer | 100 | Max listings to return (0 = unlimited) |
| `proxyConfiguration` | proxy | RESIDENTIAL BE | Apify Residential proxy, Belgium recommended |

### Output fields

Each record contains:

| Field | Description |
|-------|-------------|
| `property_id` | Immoweb internal listing ID |
| `title` | Listing title |
| `url` | Direct URL to the listing |
| `operation` | `FOR_SALE` or `FOR_RENT` |
| `property_type` | `HOUSE`, `APARTMENT`, `LAND`, `GARAGE`, etc. |
| `property_subtype` | `MANSION`, `VILLA`, `BUNGALOW`, `STUDIO`, etc. |
| `price` | Price in EUR |
| `price_old` | Previous/crossed-out price (if available) |
| `monthly_charges` | For-rent: monthly charges (if set) |
| `price_display` | Formatted price string (e.g. `€269,000`) |
| `bedrooms` | Number of bedrooms |
| `rooms` | Total room count |
| `living_area_m2` | Net habitable surface (m²) |
| `land_surface_m2` | Land/plot surface (m²) |
| `epc_score` | Energy performance certificate: A/B/C/D/E/F/G |
| `epc_logo_url` | EPC certificate image URL |
| `locality` | City/municipality |
| `postal_code` | Belgian postal code |
| `region` | Region (Brussels, Flanders, Wallonia) |
| `province` | Province name |
| `latitude` | GPS latitude (when available) |
| `longitude` | GPS longitude (when available) |
| `agency_name` | Agency or seller name |
| `agency_type` | `AGENCY`, `PRIVATE`, `DEVELOPER` |
| `agency_logo_url` | Agency logo URL |
| `agency_phone` | Agency phone number |
| `images` | List of large image URLs |
| `image_count` | Number of photos |
| `thumbnail` | First/preview image URL |
| `features` | Dict of notable features (garden, parking, lift, heating, etc.) |
| `publication_date` | When the listing was first published |
| `last_modification_date` | Last update timestamp |
| `flags` | List of listing flags (e.g. `new`) |
| `has_360_tour` | Whether a 360° tour is available |
| `has_virtual_tour` | Whether a virtual tour is available |
| `has_video` | Whether a video is available |
| `scraped_at` | Run timestamp (UTC ISO) |

### Example input

```json
{
  "operation": "for-sale",
  "propertyType": "apartment",
  "postalCodes": "1000,1030,1050",
  "priceMin": 200000,
  "priceMax": 500000,
  "minBedrooms": 2,
  "maxItems": 100,
  "proxyConfiguration": {
    "useApifyProxy": true,
    "apifyProxyGroups": ["RESIDENTIAL"],
    "apifyProxyCountry": "BE"
  }
}
```

### Proxy

Apify RESIDENTIAL proxy with country **BE** is recommended for reliable access. The proxy cost is billed to your Apify run — no external proxy account needed.

### Pricing

This actor uses **Pay Per Event** pricing: you are charged per property record returned. Default ~$2 per 1,000 records.

# Actor input Schema

## `operation` (type: `string`):

Whether to scrape properties for sale or for rent.

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

Type of property to search. 'house' covers all houses, 'apartment' all apartments, 'land' land/building plots, 'garage' garages and parking. Leave as 'house' for residential houses.

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

One or more Belgian postal codes, comma-separated (e.g. '1000', '1000,1030,1050' for Brussels area, '9000' for Ghent, '2000' for Antwerp). Leave blank to search all of Belgium.

## `priceMin` (type: `integer`):

Only return listings priced at or above this amount in euros. Leave blank for no lower bound.

## `priceMax` (type: `integer`):

Only return listings priced at or below this amount in euros. Leave blank for no upper bound.

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

Minimum number of bedrooms. Leave blank for no requirement.

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

Maximum number of property listings to return. Set to 0 for all available results. Default 100.

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

Fetch each listing's full detail object (EPC/energy, construction permit, room surfaces, full address, cadastral income, certificates — 150+ fields). Disable for a faster summary-only run (~40 fields).

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

Recommended: Apify Residential proxy with country Belgium (BE) for best reliability. Without proxy, direct datacenter IPs may be blocked.

## Actor input object example

```json
{
  "operation": "for-sale",
  "propertyType": "house",
  "maxItems": 100,
  "fetchDetails": true,
  "proxyConfiguration": {
    "useApifyProxy": true,
    "apifyProxyGroups": [
      "RESIDENTIAL"
    ],
    "apifyProxyCountry": "BE"
  }
}
```

# Actor output Schema

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

Dataset containing Immoweb Properties Scraper records (title, price, operation, property\_type, bedrooms, living\_area\_m2, epc\_score, locality, postal\_code, agency\_name, image\_count, url, scraped\_at).

# 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 = {
    "operation": "for-sale",
    "propertyType": "house",
    "postalCodes": "",
    "maxItems": 100,
    "fetchDetails": true,
    "proxyConfiguration": {
        "useApifyProxy": true,
        "apifyProxyGroups": [
            "RESIDENTIAL"
        ],
        "apifyProxyCountry": "BE"
    }
};

// Run the Actor and wait for it to finish
const run = await client.actor("bovi/immoweb-properties-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 = {
    "operation": "for-sale",
    "propertyType": "house",
    "postalCodes": "",
    "maxItems": 100,
    "fetchDetails": True,
    "proxyConfiguration": {
        "useApifyProxy": True,
        "apifyProxyGroups": ["RESIDENTIAL"],
        "apifyProxyCountry": "BE",
    },
}

# Run the Actor and wait for it to finish
run = client.actor("bovi/immoweb-properties-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 '{
  "operation": "for-sale",
  "propertyType": "house",
  "postalCodes": "",
  "maxItems": 100,
  "fetchDetails": true,
  "proxyConfiguration": {
    "useApifyProxy": true,
    "apifyProxyGroups": [
      "RESIDENTIAL"
    ],
    "apifyProxyCountry": "BE"
  }
}' |
apify call bovi/immoweb-properties-scraper --silent --output-dataset

```

## MCP server setup

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