# Check Sold Property Prices in Any Australian Suburb

**Use case:** 

Find what homes in an Australian suburb sold for. Each row carries the address, postcode, confirmed sold date, price estimate, selling agency and history link.

## Input

```json
{
  "mode": "search",
  "listingType": "sold",
  "locations": [
    "Coomera, QLD, 4209"
  ],
  "maxResultsPerSearch": 4,
  "splitByPropertyType": false,
  "splitByPriceRange": false
}
```

## Output

```json
{
  "streetAddress": {
    "label": "Street address",
    "format": "string"
  },
  "suburb": {
    "label": "Suburb",
    "format": "string"
  },
  "state": {
    "label": "State",
    "format": "string"
  },
  "postcode": {
    "label": "Postcode",
    "format": "string"
  },
  "soldDate": {
    "label": "Sold date",
    "format": "string"
  },
  "estimatedPrice": {
    "label": "Price estimate",
    "format": "string"
  },
  "estimatedPriceValue": {
    "label": "Price estimate value",
    "format": "number"
  },
  "lastSoldAgency": {
    "label": "Selling agency",
    "format": "string"
  },
  "propertyHistoryLink": {
    "label": "Property history link",
    "format": "string"
  }
}
```

## About this Actor

This example demonstrates how to use [Realestate.com.au Property API](https://apify.com/johnvc/realestate-au-property-api) with a specific input configuration. Visit the [Actor detail page](https://apify.com/johnvc/realestate-au-property-api) to learn more, explore other use cases, and run it yourself.