# South Africa Property Listings Data Extractor

**Use case:** 

Extract detailed real estate listings from PrivateProperty.co.za, including prices, descriptions, agent info, and images from up to 200 properties.

## Input

```json
{
  "startUrls": [
    {
      "url": "https://www.privateproperty.co.za/for-sale/south-africa/1"
    }
  ],
  "propertyType": "",
  "minPrice": 0,
  "maxPrice": 0,
  "minBedrooms": 0,
  "maxBedrooms": 0,
  "results_wanted": 200,
  "max_pages": 10,
  "proxyConfiguration": {
    "useApifyProxy": false
  }
}
```

## Output

```json
{
  "listing_id": {
    "label": "Listing ID",
    "format": "text"
  },
  "title": {
    "label": "Title",
    "format": "text"
  },
  "price_display": {
    "label": "Price",
    "format": "text"
  },
  "price": {
    "label": "Price Numeric",
    "format": "text"
  },
  "currency": {
    "label": "Currency",
    "format": "text"
  },
  "bedrooms": {
    "label": "Beds",
    "format": "text"
  },
  "bathrooms": {
    "label": "Baths",
    "format": "text"
  },
  "parking_spaces": {
    "label": "Parking",
    "format": "text"
  },
  "property_type": {
    "label": "Property Type",
    "format": "text"
  },
  "location": {
    "label": "Location",
    "format": "text"
  },
  "floor_size_sqm": {
    "label": "Floor (sqm)",
    "format": "text"
  },
  "land_size_sqm": {
    "label": "Land (sqm)",
    "format": "text"
  },
  "levies_display": {
    "label": "Levies",
    "format": "text"
  },
  "rates_taxes_display": {
    "label": "Rates & Taxes",
    "format": "text"
  },
  "fetched_via": {
    "label": "Fetched Via",
    "format": "text"
  },
  "url": {
    "label": "URL",
    "format": "link"
  }
}
```

## About this Actor

This example demonstrates how to use [Private Property Scraper 🏡](https://apify.com/shahidirfan/private-property-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/shahidirfan/private-property-scraper) to learn more, explore other use cases, and run it yourself.