# Belgian Houses for Sale on Immoweb

**Use case:** 

Export houses for sale across Belgium: asking price, living area, plot size, bedrooms, locality, GPS and the selling agency. CSV, JSON or Excel.

## Input

```json
{
  "operation": "search",
  "locations": [
    "Ghent",
    "Antwerp",
    "Liège"
  ],
  "propertyType": "house",
  "transactionType": "for-sale",
  "maxResults": 30,
  "sort": "newest",
  "language": "en",
  "includeDetails": false,
  "minPrice": 0,
  "maxPrice": 0,
  "minBedroomCount": 0,
  "minSurface": 0,
  "minLandSurface": 0,
  "epcScores": [],
  "buildingCondition": "any",
  "hasGarden": false,
  "hasTerrace": false,
  "hasSwimmingPool": false,
  "isNewlyBuilt": false,
  "searchUrls": [],
  "listingUrls": []
}
```

## Output

```json
{
  "listingId": {
    "label": "🆔 Listing ID",
    "format": "number"
  },
  "propertyTitle": {
    "label": "🏷️ Title",
    "format": "string"
  },
  "url": {
    "label": "🔗 Listing URL",
    "format": "string"
  },
  "price": {
    "label": "💰 Price",
    "format": "number"
  },
  "priceText": {
    "label": "💵 Price (formatted)",
    "format": "string"
  },
  "oldPrice": {
    "label": "📉 Previous price",
    "format": "number"
  },
  "priceKind": {
    "label": "🏷️ Price type",
    "format": "string"
  },
  "transactionType": {
    "label": "🤝 Sale / rent",
    "format": "string"
  },
  "propertyType": {
    "label": "🏠 Property type",
    "format": "string"
  },
  "propertySubtype": {
    "label": "🏘️ Subtype",
    "format": "string"
  },
  "bedroomCount": {
    "label": "🛏️ Bedrooms",
    "format": "number"
  },
  "netHabitableSurface": {
    "label": "📐 Living area (m²)",
    "format": "number"
  },
  "landSurface": {
    "label": "🌳 Plot (m²)",
    "format": "number"
  },
  "roomCount": {
    "label": "🚪 Rooms",
    "format": "number"
  },
  "locality": {
    "label": "🏙️ Locality",
    "format": "string"
  },
  "postalCode": {
    "label": "📮 Postal code",
    "format": "string"
  },
  "street": {
    "label": "🛣️ Street",
    "format": "string"
  },
  "streetNumber": {
    "label": "🔢 Number",
    "format": "string"
  },
  "district": {
    "label": "🗺️ District",
    "format": "string"
  },
  "province": {
    "label": "🏞️ Province",
    "format": "string"
  },
  "region": {
    "label": "🌍 Region",
    "format": "string"
  },
  "latitude": {
    "label": "🌐 Latitude",
    "format": "number"
  },
  "longitude": {
    "label": "🌐 Longitude",
    "format": "number"
  },
  "agencyName": {
    "label": "🏢 Agency",
    "format": "string"
  },
  "agencyLogoUrl": {
    "label": "🖼️ Agency logo",
    "format": "string"
  },
  "imageUrl": {
    "label": "📷 Photo",
    "format": "string"
  },
  "imageUrls": {
    "label": "🖼️ All photos",
    "format": "array"
  },
  "imageCount": {
    "label": "📸 Photo count",
    "format": "number"
  },
  "listingFlag": {
    "label": "🚩 Badge",
    "format": "string"
  },
  "publishedAt": {
    "label": "📅 Published",
    "format": "string"
  },
  "updatedAt": {
    "label": "🔄 Updated",
    "format": "string"
  },
  "hasVirtualTour": {
    "label": "🎥 Virtual tour",
    "format": "boolean"
  },
  "descriptionText": {
    "label": "📝 Description",
    "format": "string"
  },
  "epcScore": {
    "label": "⚡ EPC label",
    "format": "string"
  },
  "epcConsumptionPerSqm": {
    "label": "🔥 kWh/m²/year",
    "format": "number"
  },
  "epcReference": {
    "label": "📋 EPC reference",
    "format": "string"
  },
  "hasRenovationObligation": {
    "label": "🏚️ Renovation obligation",
    "format": "boolean"
  },
  "cadastralIncome": {
    "label": "🏛️ Cadastral income (€)",
    "format": "number"
  },
  "constructionYear": {
    "label": "📆 Built",
    "format": "number"
  },
  "buildingCondition": {
    "label": "🔨 Condition",
    "format": "string"
  },
  "facadeCount": {
    "label": "🧱 Facades",
    "format": "number"
  },
  "heatingType": {
    "label": "♨️ Heating",
    "format": "string"
  },
  "kitchenType": {
    "label": "🍳 Kitchen",
    "format": "string"
  },
  "bathroomCount": {
    "label": "🛁 Bathrooms",
    "format": "number"
  },
  "toiletCount": {
    "label": "🚽 Toilets",
    "format": "number"
  },
  "hasGarden": {
    "label": "🌿 Garden",
    "format": "boolean"
  },
  "gardenSurface": {
    "label": "🌱 Garden (m²)",
    "format": "number"
  },
  "hasTerrace": {
    "label": "🪴 Terrace",
    "format": "boolean"
  },
  "terraceSurface": {
    "label": "☀️ Terrace (m²)",
    "format": "number"
  },
  "hasSwimmingPool": {
    "label": "🏊 Pool",
    "format": "boolean"
  },
  "hasLift": {
    "label": "🛗 Lift",
    "format": "boolean"
  },
  "parkingCountIndoor": {
    "label": "🅿️ Indoor parking",
    "format": "number"
  },
  "parkingCountOutdoor": {
    "label": "🚙 Outdoor parking",
    "format": "number"
  },
  "floodZoneType": {
    "label": "🌊 Flood zone",
    "format": "string"
  },
  "availabilityDate": {
    "label": "🗓️ Available from",
    "format": "string"
  },
  "isSubjectToVat": {
    "label": "🧾 Sold under VAT",
    "format": "boolean"
  },
  "agencyPhone": {
    "label": "📞 Agency phone",
    "format": "string"
  },
  "agencyEmail": {
    "label": "✉️ Agency email",
    "format": "string"
  },
  "agencyWebsite": {
    "label": "🌐 Agency website",
    "format": "string"
  },
  "agencyIpiNumber": {
    "label": "🪪 IPI/BIV number",
    "format": "string"
  },
  "agencyReference": {
    "label": "🔖 Agency reference",
    "format": "string"
  },
  "viewCount": {
    "label": "👀 Views",
    "format": "number"
  },
  "bookmarkCount": {
    "label": "⭐ Saves",
    "format": "number"
  },
  "searchedLocation": {
    "label": "🔎 Searched location",
    "format": "string"
  },
  "status": {
    "label": "✅ Status",
    "format": "string"
  },
  "_operation": {
    "label": "🎯 Mode",
    "format": "string"
  },
  "_fetchedAt": {
    "label": "⏱️ Fetched",
    "format": "string"
  }
}
```

## About this Actor

This example demonstrates how to use [Immoweb Scraper - Belgium Property Listings & Prices](https://apify.com/sian.agency/immoweb-be-property-scraper.md) with a specific input configuration. Visit the [Actor detail page](https://apify.com/sian.agency/immoweb-be-property-scraper.md) to learn more, explore other use cases, and run it yourself.


## 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.
This Task's input is already configured above — use it as-is rather than inventing a new one.

- **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 full API examples (JavaScript, Python, CLI, MCP, OpenAPI), see this Task's Actor page: https://apify.com/sian.agency/immoweb-be-property-scraper.md

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).
