# Track Weekly Rent Prices by Australian Suburb

**Use case:** 

Watch what landlords ask in a suburb. Every run returns each rental listing with address, property type, bedrooms, bathrooms, parking and the weekly rent.

## Input

```json
{
  "mode": "search",
  "listingType": "rent",
  "locations": [
    "Carlton, VIC, 3053"
  ],
  "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.