# 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:** 2 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/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

## 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("💾 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 '{
  "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": {
            "command": "npx",
            "args": [
                "mcp-remote",
                "https://mcp.apify.com/?tools=bovi/immoweb-properties-scraper",
                "--header",
                "Authorization: Bearer <YOUR_API_TOKEN>"
            ]
        }
    }
}

```

## OpenAPI specification

```json
{
    "openapi": "3.0.1",
    "info": {
        "title": "Immoweb Scraper — Belgium Real Estate, Prices, EPC | $1.19/1K",
        "description": "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.",
        "version": "0.1",
        "x-build-id": "gc7l42TSrv8SEsPYw"
    },
    "servers": [
        {
            "url": "https://api.apify.com/v2"
        }
    ],
    "paths": {
        "/acts/bovi~immoweb-properties-scraper/run-sync-get-dataset-items": {
            "post": {
                "operationId": "run-sync-get-dataset-items-bovi-immoweb-properties-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/bovi~immoweb-properties-scraper/runs": {
            "post": {
                "operationId": "runs-sync-bovi-immoweb-properties-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/bovi~immoweb-properties-scraper/run-sync": {
            "post": {
                "operationId": "run-sync-bovi-immoweb-properties-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",
                "properties": {
                    "operation": {
                        "title": "Operation",
                        "enum": [
                            "for-sale",
                            "for-rent"
                        ],
                        "type": "string",
                        "description": "Whether to scrape properties for sale or for rent.",
                        "default": "for-sale"
                    },
                    "propertyType": {
                        "title": "Property type",
                        "enum": [
                            "house",
                            "apartment",
                            "land",
                            "garage",
                            "office",
                            "industry"
                        ],
                        "type": "string",
                        "description": "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.",
                        "default": "house"
                    },
                    "postalCodes": {
                        "title": "Postal code(s)",
                        "type": "string",
                        "description": "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": {
                        "title": "Minimum price (EUR)",
                        "minimum": 0,
                        "type": "integer",
                        "description": "Only return listings priced at or above this amount in euros. Leave blank for no lower bound."
                    },
                    "priceMax": {
                        "title": "Maximum price (EUR)",
                        "minimum": 0,
                        "type": "integer",
                        "description": "Only return listings priced at or below this amount in euros. Leave blank for no upper bound."
                    },
                    "minBedrooms": {
                        "title": "Minimum bedrooms",
                        "minimum": 0,
                        "type": "integer",
                        "description": "Minimum number of bedrooms. Leave blank for no requirement."
                    },
                    "maxItems": {
                        "title": "Max properties to scrape",
                        "minimum": 0,
                        "type": "integer",
                        "description": "Maximum number of property listings to return. Set to 0 for all available results. Default 100.",
                        "default": 100
                    },
                    "fetchDetails": {
                        "title": "Fetch full details (150+ fields)",
                        "type": "boolean",
                        "description": "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).",
                        "default": true
                    },
                    "proxyConfiguration": {
                        "title": "Proxy configuration",
                        "type": "object",
                        "description": "Recommended: Apify Residential proxy with country Belgium (BE) for best reliability. Without proxy, direct datacenter IPs may be blocked.",
                        "default": {
                            "useApifyProxy": true,
                            "apifyProxyGroups": [
                                "RESIDENTIAL"
                            ],
                            "apifyProxyCountry": "BE"
                        }
                    }
                }
            },
            "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
                                    }
                                }
                            }
                        }
                    }
                }
            }
        }
    }
}
```
