# Get Australian Sold Property Data in Claude via MCP

**Use case:** 

Ask Claude what homes in an Australian suburb sold for. Every sold listing returns address, postcode, sold date, price estimate and the selling agency.

## Input

```json
{
  "mode": "search",
  "listingType": "sold",
  "locations": [
    "Blacktown, NSW, 2148"
  ],
  "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.