# Scrape homes for sale in Austin

**Use case:** 

Extract Zillow for-sale listings in Austin, TX. Get address, price, beds, baths, photos, and listing URLs for market and inventory research.

## Input

```json
{
  "listingUrls": [
    "https://www.zillow.com/austin-tx/for_sale/?searchQueryState=%7B%22isMapVisible%22%3Atrue%2C%22mapBounds%22%3A%7B%22west%22%3A-98.05%2C%22east%22%3A-97.45%2C%22south%22%3A30.05%2C%22north%22%3A30.55%7D%2C%22filterState%22%3A%7B%22sort%22%3A%7B%22value%22%3A%22days%22%7D%7D%2C%22isListVisible%22%3Atrue%7D"
  ],
  "scrapeMode": "pages",
  "maxListings": 50
}
```

## Output

```json
{
  "listingUrl": {
    "label": "Listing URL",
    "format": "string"
  },
  "fullAddress": {
    "label": "Full address",
    "format": "string"
  },
  "city": {
    "label": "City",
    "format": "string"
  },
  "state": {
    "label": "State",
    "format": "string"
  },
  "priceDisplay": {
    "label": "Price display",
    "format": "string"
  },
  "bedrooms": {
    "label": "Bedrooms",
    "format": "number"
  },
  "bathrooms": {
    "label": "Bathrooms",
    "format": "number"
  },
  "livingArea": {
    "label": "Living area",
    "format": "number"
  },
  "listingStatus": {
    "label": "Listing status",
    "format": "string"
  },
  "photoUrl": {
    "label": "Photo URL",
    "format": "string"
  },
  "scrapedAt": {
    "label": "Scraped at",
    "format": "string"
  }
}
```

## About this Actor

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