# Zillow Austin Homes for Sale Scraper

**Use case:** 

Scrape Zillow listings for Austin homes for sale with prices, beds, baths, addresses, and listing URLs.

## Input

```json
{
  "searchUrls": [
    "https://www.zillow.com/san-francisco-ca/"
  ],
  "searchQueries": [
    "Austin, TX"
  ],
  "listingType": "for_sale",
  "minPrice": 300000,
  "maxPrice": 900000,
  "minBeds": 3,
  "propertyType": "all",
  "maxListings": 75,
  "maxRequestRetries": 1
}
```

## Output

```json
{
  "zpid": {
    "label": "ZPID"
  },
  "address": {
    "label": "Address"
  },
  "city": {
    "label": "City"
  },
  "state": {
    "label": "State"
  },
  "zipcode": {
    "label": "ZIP"
  },
  "price": {
    "label": "Price",
    "format": "number"
  },
  "homeStatus": {
    "label": "Status"
  },
  "propertyType": {
    "label": "Type"
  },
  "bedrooms": {
    "label": "Beds",
    "format": "number"
  },
  "bathrooms": {
    "label": "Baths",
    "format": "number"
  },
  "livingArea": {
    "label": "SqFt",
    "format": "number"
  },
  "yearBuilt": {
    "label": "Built",
    "format": "number"
  },
  "zestimate": {
    "label": "Zestimate",
    "format": "number"
  },
  "url": {
    "label": "URL",
    "format": "link"
  }
}
```

## About this Actor

This example demonstrates how to use [Zillow Scraper](https://apify.com/automation-lab/zillow-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/automation-lab/zillow-scraper) to learn more, explore other use cases, and run it yourself.