# Sale houses in Austin TX

**Use case:** 

Explore available homes for sale in Austin, TX, featuring a minimum of 2 bathrooms and a maximum price of $750,000. This task provides crucial listing details such as price, address, home types like condos and single-family homes, plus additional property features to assist you in finding your perfect home.

## Input

```json
{
  "search": "Austin TX",
  "startUrls": [],
  "zpids": [
    "89070667",
    "448148857"
  ],
  "type": "sale",
  "priceMin": 250000,
  "priceMax": 750000,
  "bedsMin": 2,
  "bedsMax": 5,
  "bathsMin": 2,
  "homeTypes": [
    "condo",
    "singleFamily",
    "townhome"
  ],
  "sqftMin": 750,
  "lotSizeMin": 5000,
  "yearBuiltMin": 2017,
  "daysOnZillowMax": 7,
  "keywords": "pool",
  "includeHomesWithNoHoaData": true,
  "includePending": false,
  "includeForeclosed": false,
  "includePreforeclosure": false,
  "availableFrom": "2026-09-19",
  "excludeSeniorCommunity": false,
  "sortOrder": "price",
  "sortAscending": true,
  "maxItems": 200,
  "maxSplitLevel": 3,
  "proxy": {
    "useApifyProxy": true,
    "apifyProxyGroups": [
      "RESIDENTIAL"
    ],
    "apifyProxyCountry": "US"
  },
  "debugLog": false
}
```

## Output

```json
{
  "photos": {
    "label": "Photos",
    "format": "array"
  },
  "homeStatus": {
    "label": "Home status",
    "format": "string"
  },
  "homeType": {
    "label": "Home type",
    "format": "string"
  },
  "price": {
    "label": "Price",
    "format": "number"
  },
  "address": {
    "label": "Address",
    "format": "object"
  },
  "bedrooms": {
    "label": "Bedrooms",
    "format": "number"
  },
  "bathrooms": {
    "label": "Bathrooms",
    "format": "number"
  },
  "livingArea": {
    "label": "Living area (sq ft)",
    "format": "number"
  },
  "lotSize": {
    "label": "Lot size",
    "format": "number"
  },
  "yearBuilt": {
    "label": "Year built",
    "format": "integer"
  },
  "zestimate": {
    "label": "Zestimate",
    "format": "number"
  },
  "daysOnZillow": {
    "label": "Days on Zillow",
    "format": "integer"
  },
  "url": {
    "label": "Listing URL",
    "format": "string"
  }
}
```

## About this Actor

This example demonstrates how to use [Zillow scraper](https://apify.com/lukass/zillow-scraper.md) with a specific input configuration. Visit the [Actor detail page](https://apify.com/lukass/zillow-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/lukass/zillow-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`).
