# Property24 Scraper (`dadhalfdev/property24-scraper`) Actor

Scrape property listings from Property24.com. Provide a search URL to collect structured data including price, location, bedrooms, erf size, photos, and agent details. Optimized to handle pagination automatically and scrape efficiently.

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

## Pricing

$15.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

## 🏠 Property24 Real Estate Scraper

**[Property24](https://www.property24.com/)** is South Africa's premier and largest property search portal, listing hundreds of thousands of residential and commercial properties for sale and to rent. For real estate investors, market analysts, property developers, or estate agencies, manually compiling data from Property24 is incredibly slow and tedious.

This Actor automates the entire process. Start from *any* Property24 search results URL (with your specific city, suburb, price, and feature filters already applied in your browser), and the scraper will seamlessly extract deep property details, geolocation coordinates, and **agent/agency phone numbers** into a clean, structured dataset.

---

### 💡 Perfect for…

- **Market Analysis & Valuations:** Monitor real estate listing prices, historical rates/taxes, and price-per-square-meter trends across South African suburbs.
- **Investment Scouting:** Filter Property24 for properties within your target yield, find distressed/urgent sales, or capture listings in high-growth neighborhoods.
- **Lead Generation & Sales:** Build databases of active South African estate agencies and individual listing agents, complete with their profile links, agency names, and **verified contact phone numbers**.
- **Data-Driven Real Estate Portals:** Easily aggregate up-to-date property listings, image galleries, and detailed features for regional property analysis.

---

### ✨ Why you'll love this scraper

- 🎯 **Advanced Filter & Context Support:** Simply apply your filters (price, property type, bedrooms, suburb, etc.) directly on Property24, copy the browser URL, and paste it into `input_url`. The scraper fully respects your search context.
- 🚀 **High Concurrency Speed:** Operates with high parallel concurrency (up to 15 workers), enabling you to scrape hundreds of property detail pages in under a minute!
- 🗺️ **Deep Content Extraction:** Pulls coordinates, rates/taxes, sectional title levies, pets-allowed flags, full text descriptions, image galleries, and room-by-room accordion metadata.

---

### 📦 What’s inside the data?

Every extracted property listing is output in a comprehensive, structured format:

| Field | Type | Description |
|---|---|---|
| `listing_number` | String | Property24 listing/web reference number |
| `title` | String | Canonical title of the listing |
| `headline` | String | Short marketing headline above the description |
| `description` | String | Full property description text |
| `url` | String | Canonical property detail page URL |
| `price` | Float | Numeric price (ZAR) |
| `currency` | String | Currency code, typically `ZAR` |
| `price_display` | String | Original price text, e.g., `R 4 050 000` or `POA` |
| `property_type` | String | Type of property, e.g. `House`, `Apartment / Flat` |
| `property_subtype` | String | Subtype classification, e.g. `Freestanding`, `Simplex` |
| `street_address` | String | Street address when available |
| `suburb` | String | Suburb parsed from the property URL |
| `city` | String | City parsed from the property URL |
| `province` | String | Province parsed from the property URL |
| `listing_type` | String | Listing category from URL, e.g., `for sale`, `to rent` |
| `lifestyle` | String | Lifestyle tags, e.g., `Country Club, Suburban` |
| `listing_date` | String | Date listed as an ISO date string (YYYY-MM-DD) |
| `erf_size_m2` | Float | Erf/plot size in m² |
| `floor_size_m2` | Float | Floor size in m² |
| `rates_and_taxes` | Float | Monthly rates and taxes |
| `levies` | Float | Sectional title levies when present |
| `pets_allowed` | Boolean | Boolean parsed from `Yes` / `No` |
| `zoning` | String | Zoning classification |
| `bedrooms` | Integer | Number of bedrooms |
| `bathrooms` | Integer | Number of bathrooms |
| `garages` | Integer | Number of garages |
| `parking_spaces` | Integer | Number of parking spaces |
| `feature_tags` | Array | Highlighted features, e.g. `["Study", "Pet Friendly", "Garden"]` |
| `rooms` | Object | Room breakdown from the overview accordion |
| `external_features`| Object | External feature key/value pairs |
| `building_features`| Object | Building feature key/value pairs |
| `other_features` | Object | Other feature key/value pairs |
| `latitude` | Float | Property latitude |
| `longitude` | Float | Property longitude |
| `main_image_url` | String | Primary property photo URL |
| `image_urls` | Array | All discovered property image URLs |
| `agent_name` | String | Listing agent name |
| `agent_url` | String | Agent profile URL |
| `agent_photo_url` | String | Agent photo URL |
| `agent_phone` | String | Revealed agent phone number |
| `agency_name` | String | Estate agency name |
| `agency_url` | String | Agency profile URL |
| `agency_logo_url` | String | Agency logo URL |
| `agency_phone` | String | Revealed agency phone number |

---

### 🚀 Quick Start

1. Go to **[Property24.com](https://www.property24.com/)** and search for your target properties using suburbs, price brackets, bedrooms, or any other filters.
2. **Copy the search results URL** from your browser address bar.
3. Paste the URL into the `input_url` field of the scraper.
4. Set `max_properties` (the maximum number of properties you want to collect).
5. Click **Start** and export your structured property dataset as JSON, CSV, or Excel!

---

#### Tech details for developers 🧑‍💻

**Input Example**

```json
{
  "input_url": "https://www.property24.com/for-sale/western-cape/9?sp=pf%3d100000",
  "max_properties": 200
}
````

**Output Example**

```json
{
  "listing_number": "116922550",
  "title": "4 Bedroom House for Sale in Country Club",
  "headline": "Spacious 3 bedroom house with 1 bedroom Flatlet in Country Club",
  "description": "Located in the prestigious Country Club, this exceptional residence offers refined modern living...",
  "url": "https://www.property24.com/for-sale/country-club/langebaan/western-cape/7943/116922550",
  "price": 4050000.0,
  "currency": "ZAR",
  "price_display": "R 4 050 000",
  "property_type": "House",
  "property_subtype": "Freestanding",
  "street_address": "10 Fairway Street, Country Club",
  "suburb": "Country Club",
  "city": "Langebaan",
  "province": "Western Cape",
  "listing_type": "for sale",
  "lifestyle": "Country Club, Suburban",
  "listing_date": "2026-02-13",
  "erf_size_m2": 803.0,
  "floor_size_m2": 260.0,
  "rates_and_taxes": 3400.0,
  "levies": null,
  "pets_allowed": true,
  "zoning": "General Residential",
  "bedrooms": 4,
  "bathrooms": 3,
  "garages": 2,
  "parking_spaces": 4,
  "feature_tags": ["Study", "Pet Friendly", "Flatlet", "Garden", "Fibre Internet", "Gas Geyser"],
  "rooms": {"Bedrooms": "4", "Bathrooms": "3", "Kitchens": "2"},
  "external_features": {"Garage": "2", "Parking": "4"},
  "building_features": {"Style": "Open Plan"},
  "other_features": {"Flatlet": "Yes", "Pet Friendly": "Yes"},
  "latitude": -33.08555,
  "longitude": 18.0406,
  "main_image_url": "https://images.prop24.com/373916944/Ensure1280x720",
  "image_urls": ["https://images.prop24.com/373916944/Ensure1280x720", "..."],
  "agent_name": "Marna Howitt",
  "agent_url": "https://www.property24.com/estate-agents/infoprop-real-estate-langebaan-and-saldanha/marna-howitt/509324",
  "agent_photo_url": "https://images.prop24.com/351904350/UpperCrop200x200",
  "agent_phone": "0829876543",
  "agency_name": "Infoprop Real Estate - Langebaan & Saldanha",
  "agency_url": "https://www.property24.com/estate-agents/infoprop-real-estate-langebaan-and-saldanha/30574",
  "agency_logo_url": "https://images.prop24.com/370575351/Fit450x225",
  "agency_phone": "0219876543"
}
```

# Actor input Schema

## `input_url` (type: `string`):

Property24 search or results URL with filters already applied. Supports for-sale, to-rent, and commercial listing pages.

## `max_properties` (type: `integer`):

Maximum number of property detail pages to scrape.

## Actor input object example

```json
{
  "input_url": "https://www.property24.com/for-sale/western-cape/9?sp=pf%3d100000",
  "max_properties": 200
}
```

# Actor output Schema

## `overview` (type: `string`):

Table view of scraped Property24 properties using the dataset 'overview' view.

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

All scraped Property24 properties from the default dataset without view transformation.

# 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 = {};

// Run the Actor and wait for it to finish
const run = await client.actor("dadhalfdev/property24-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 = {}

# Run the Actor and wait for it to finish
run = client.actor("dadhalfdev/property24-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 '{}' |
apify call dadhalfdev/property24-scraper --silent --output-dataset

```

## MCP server setup

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

```

## OpenAPI specification

```json
{
    "openapi": "3.0.1",
    "info": {
        "title": "Property24 Scraper",
        "description": "Scrape property listings from Property24.com. Provide a search URL to collect structured data including price, location, bedrooms, erf size, photos, and agent details. Optimized to handle pagination automatically and scrape efficiently.",
        "version": "0.1",
        "x-build-id": "Rr0qk28wLFHHv43Di"
    },
    "servers": [
        {
            "url": "https://api.apify.com/v2"
        }
    ],
    "paths": {
        "/acts/dadhalfdev~property24-scraper/run-sync-get-dataset-items": {
            "post": {
                "operationId": "run-sync-get-dataset-items-dadhalfdev-property24-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/dadhalfdev~property24-scraper/runs": {
            "post": {
                "operationId": "runs-sync-dadhalfdev-property24-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/dadhalfdev~property24-scraper/run-sync": {
            "post": {
                "operationId": "run-sync-dadhalfdev-property24-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": [
                    "input_url"
                ],
                "properties": {
                    "input_url": {
                        "title": "Input URL",
                        "type": "string",
                        "description": "Property24 search or results URL with filters already applied. Supports for-sale, to-rent, and commercial listing pages.",
                        "default": "https://www.property24.com/for-sale/western-cape/9?sp=pf%3d100000"
                    },
                    "max_properties": {
                        "title": "Maximum number of properties",
                        "minimum": 1,
                        "maximum": 1000,
                        "type": "integer",
                        "description": "Maximum number of property detail pages to scrape.",
                        "default": 200
                    }
                }
            },
            "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
                                    }
                                }
                            }
                        }
                    }
                }
            }
        }
    }
}
```
