# realestate.com.au Scraper — Extract Buy, Rent & Sold Listing

**Use case:** 

Scrape realestate.com.au for buy, rent, and sold property listings in any Australian suburb. Export to JSON or CSV. Up to 2,000 listings per URL.

## Input

```json
{
  "startUrls": [
    {
      "url": "https://www.realestate.com.au/buy/map-1?boundingBox=-33.87159913940434%2C151.12639266392387%2C-33.90042065887519%2C151.20879012486137&activeSort=list-date&source=refinement&sourcePage=map&sourceElement=map-zoom",
      "method": "GET"
    }
  ],
  "fullScrape": false,
  "Proxy config": {
    "useApifyProxy": false
  }
}
```

## Output

```json
{
  "url": {
    "label": "URL",
    "format": "string"
  },
  "mainImage": {
    "label": "Photo",
    "format": "string"
  },
  "title": {
    "label": "Title",
    "format": "string"
  },
  "price": {
    "label": "Price",
    "format": "object"
  },
  "channel": {
    "label": "Channel",
    "format": "string"
  },
  "propertyType": {
    "label": "Property Type",
    "format": "string"
  },
  "propertyTypeDisplay": {
    "label": "Property Type Label",
    "format": "string"
  },
  "constructionStatus": {
    "label": "Construction Status",
    "format": "string"
  },
  "address": {
    "label": "Address",
    "format": "object"
  },
  "generalFeatures": {
    "label": "Features",
    "format": "object"
  },
  "landSize": {
    "label": "Land Size",
    "format": "object"
  },
  "propertyFeatures": {
    "label": "Property Features",
    "format": "array"
  },
  "description": {
    "label": "Description",
    "format": "string"
  },
  "images": {
    "label": "Images",
    "format": "array"
  },
  "dateSold": {
    "label": "Date Sold",
    "format": "object"
  },
  "modifiedDate": {
    "label": "Modified Date",
    "format": "object"
  },
  "status": {
    "label": "Status",
    "format": "object"
  },
  "agency": {
    "label": "Agency",
    "format": "object"
  },
  "lister": {
    "label": "Agent",
    "format": "object"
  },
  "listingId": {
    "label": "Listing ID",
    "format": "string"
  },
  "productDepth": {
    "label": "Product Depth",
    "format": "string"
  },
  "signature": {
    "label": "Signature",
    "format": "boolean"
  },
  "featured": {
    "label": "Featured",
    "format": "boolean"
  },
  "advertising": {
    "label": "Advertising",
    "format": "object"
  },
  "propertyTypeId": {
    "label": "Property Type ID",
    "format": "string"
  }
}
```

## About this Actor

This example demonstrates how to use [Australian Property Listings Web Scraper](https://apify.com/scrapemind/ausscraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/scrapemind/ausscraper) to learn more, explore other use cases, and run it yourself.