# Export an Australian Property Dataset to CSV or Excel

**Use case:** 

Build your own Australian property dataset: one flat row per home with address, suburb, state, type, beds, baths, parking, price estimate and listing link.

## Input

```json
{
  "mode": "search",
  "listingType": "sold",
  "locations": [
    "Ipswich, QLD, 4305"
  ],
  "maxResultsPerSearch": 3,
  "splitByPropertyType": false,
  "splitByPriceRange": false
}
```

## Output

```json
{
  "streetAddress": {
    "label": "Street address",
    "format": "string"
  },
  "suburb": {
    "label": "Suburb",
    "format": "string"
  },
  "state": {
    "label": "State",
    "format": "string"
  },
  "propertyType": {
    "label": "Property type",
    "format": "string"
  },
  "bedrooms": {
    "label": "Bedrooms",
    "format": "integer"
  },
  "bathrooms": {
    "label": "Bathrooms",
    "format": "integer"
  },
  "parking": {
    "label": "Parking spaces",
    "format": "integer"
  },
  "estimatedPrice": {
    "label": "Price estimate",
    "format": "string"
  },
  "listingType": {
    "label": "Listing type",
    "format": "string"
  },
  "listingUrl": {
    "label": "Listing URL",
    "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.