home / skills / openclaw / skills / property-search

property-search skill

/skills/jakelin/property-search

This skill helps you construct property.com.au research URLs for valuations, sold history, and suburb data to accelerate Australian property research.

npx playbooks add skill openclaw/skills --skill property-search

Review the files below or copy the command above to add this skill to your agents.

Files (2)
SKILL.md
3.5 KB
---
name: property-search
description: Search property.com.au for Australian property research — valuations, sold history, suburb profiles, and property details. Use when researching property values, sale history, or suburb data in Australia via property.com.au. Owned by REA Group — active listings link to realestate.com.au.
---

# property.com.au Property Research

Construct property.com.au URLs for Australian property research. Best for valuations, sold history, and suburb data — not primary listing search. No API key required.

## Property Profile (by address)

Look up any property's history, estimate, and details:

```
https://www.property.com.au/{state}/{suburb}-{postcode}/{street-name}/{number}-pid-{propertyId}/
```

**Street format:** lowercase, hyphens for spaces, abbreviate street types (`st`, `rd`, `ave`, `pl`, `ct`, `dr`, `cres`, `tce`)

### Examples

```
https://www.property.com.au/vic/malvern-3144/como-st/4-pid-6510692/
https://www.property.com.au/vic/armadale-3143/elgin-ave/5-pid-1234567/
```

**Unit/apartment format:** `{unit}-{number}-pid-{id}`
```
https://www.property.com.au/vic/malvern-3144/high-st/203-1269-pid-12345678/
```

## Suburb Profile

Median prices, demographics, schools, transport, market data:

```
https://www.property.com.au/{state}/{suburb}-{postcode}/
```

### Examples

```
https://www.property.com.au/vic/malvern-3144/
https://www.property.com.au/vic/armadale-3143/
```

## Buy Listings (by location)

property.com.au aggregates listings from realestate.com.au. Browse by state or region:

```
https://www.property.com.au/{state}/buy/
https://www.property.com.au/{state}/{suburb}-{postcode}/buy/
```

### Examples

```
https://www.property.com.au/vic/buy/
https://www.property.com.au/vic/malvern-3144/buy/
https://www.property.com.au/vic/melbourne-city-greater-region/buy/
```

**By property type:**
```
https://www.property.com.au/{state}/{suburb}-{postcode}/{type}/buy/
```

Types: `house`, `townhouse`, `apartment-unit`, `villa`, `land`, `acreage`, `rural`, `block-of-units`, `retirement`

Example — townhouses for sale in Malvern:
```
https://www.property.com.au/vic/malvern-3144/townhouse/buy/
```

**Note:** Price and bedroom filters use JS-based UI — they don't persist in the URL. For filtered search, use realestate.com.au instead.

## Sold History

Browse recent sales by suburb:

```
https://www.property.com.au/{state}/{suburb}-{postcode}/sold/
```

Example:
```
https://www.property.com.au/vic/malvern-3144/sold/
```

## Street Browse

See all properties on a street:

```
https://www.property.com.au/{state}/{suburb}-{postcode}/{street-name}/
```

Example:
```
https://www.property.com.au/vic/malvern-3144/como-st/
```

## School Insights

Schools near a suburb, with grades, sector, and student count:

```
https://www.property.com.au/{state}/{suburb}-{postcode}/schools/{school-name}-sid-{schoolId}/
```

School data is shown on suburb profile pages automatically.

## When to Use property.com.au vs Others

| Need | Best site |
|------|-----------|
| **Search listings with filters** | realestate.com.au or domain.com.au |
| **Property value estimate** | property.com.au |
| **Sold price history** | property.com.au |
| **Suburb median prices** | property.com.au or domain.com.au |
| **Compare properties** | realestate.com.au |

## Limitations

- Listing search filters (price, beds, type) are JS-only — not URL-constructable
- Active listings redirect to realestate.com.au
- Property IDs (pid) may need to be discovered via search or suburb browse
- `web_fetch` may be blocked (same REA Group anti-bot as realestate.com.au)

Overview

This skill builds property.com.au URLs for Australian property research and navigation. It is optimised for valuations, sold history, suburb profiles, street listings and individual property pages. No API key is required; active listing links redirect to realestate.com.au.

How this skill works

The skill composes canonical property.com.au paths from components: state, suburb-postcode, street-name, unit/number and propertyId (pid). It supports suburb profiles, street browse, property profiles, sold history, buy listings by location and school pages. It does not scrape content; it only generates URLs you can open in a browser or use as targets for permitted tooling.

When to use it

  • You need an address-specific property page or valuation estimate on property.com.au.
  • You want suburb median prices, demographics, schools or market snapshots.
  • You need recent sold history for a suburb or street.
  • You want to browse every property on a street or inspect a specific PID.
  • You want buy-listing aggregates but will follow through to realestate.com.au for filters.

Best practices

  • Format street names lowercase with hyphens and abbreviate street types (st, rd, ave, pl, ct, dr, cres, tce).
  • Include suburb and postcode as {suburb}-{postcode} to reach suburb or street pages.
  • Use {number}-pid-{propertyId} or {unit}-{number}-pid-{propertyId} for property profiles when you have the PID.
  • Prefer realestate.com.au for complex listing filters (price, beds) since property.com.au UI filters are JavaScript-only.
  • Accept that active listings will redirect to realestate.com.au and that automated fetches may be blocked by REA Group anti-bot protections.

Example use cases

  • Construct a property profile URL to view a sold history and estimated value for 4 Como St, Malvern VIC 3144.
  • Open the suburb profile for Malvern-3144 to get median prices, demographics and nearby schools.
  • List recent sales in a suburb using the /sold/ endpoint to check comparable sold prices.
  • Browse all addresses on a street like /como-st/ to find property IDs for detailed lookups.
  • Generate buy-listing overview URLs for a suburb then follow redirects to realestate.com.au for filtered searches.

FAQ

Do I need an API key to use these URLs?

No. Constructing and opening property.com.au URLs does not require an API key.

Can I apply price and bedroom filters in the URL?

No. Price and bedroom filters are implemented in the site’s JavaScript UI and do not persist in the URL; use realestate.com.au for URL-based filtered searches.