# Check rental asking prices in Bondi Beach

**Use case:** 

Searches realestate.com.au for current rental listings in Bondi Beach, returning weekly rent, bedrooms and property type for each, so a landlord or property manager can benchmark their own asking rent against what else is actually listed in the suburb right now.

## Input

```json
{
  "locations": [
    "Bondi Beach, NSW"
  ],
  "listingType": "rent",
  "maxItemsPerLocation": 40
}
```

## Output

```json
{
  "display_address": {
    "label": "Address",
    "format": "string"
  },
  "price_label": {
    "label": "Price",
    "format": "string"
  },
  "bedrooms": {
    "label": "Beds",
    "format": "integer"
  },
  "bathrooms": {
    "label": "Baths",
    "format": "integer"
  },
  "parking": {
    "label": "Parking",
    "format": "integer"
  },
  "property_type": {
    "label": "Type",
    "format": "string"
  },
  "url": {
    "label": "Link",
    "format": "string"
  }
}
```

## About this Actor

This example demonstrates how to use [realestate.com.au Scraper: Price, Beds, Agent](https://apify.com/themineworks/realestate-com-au-scraper.md) with a specific input configuration. Visit the [Actor detail page](https://apify.com/themineworks/realestate-com-au-scraper.md) to learn more, explore other use cases, and run it yourself.


## How to integrate an Actor?

This Task's input is already configured above. Use it as-is rather than inventing a new one.

Do not guess an integration path. Every one of them is in the agent quickstart at https://apify.com/agents.md: the Apify MCP server, Agent Skills with the Apify CLI, the JavaScript and Python clients, the REST API, and the account-free path for an agent with no human to sign in. It also carries the rule on stating cost before the first paid run.

For full API examples (JavaScript, Python, CLI, MCP, OpenAPI), see this Task's Actor page: https://apify.com/themineworks/realestate-com-au-scraper.md

Each client library has reference documentation the quickstart does not restate: [JavaScript/TypeScript](https://docs.apify.com/api/client/js/docs.md) (`npm install apify-client`) and [Python](https://docs.apify.com/api/client/python/docs.md) (`pip install apify-client`).
