# Scrape Zillow Homes for Sale — Price, Beds & Address

**Use case:** 

Scrape Zillow homes for sale by city: price, beds, baths, square footage, address and listing details. No login required.

## Input

```json
{
  "location": "Austin, TX",
  "operation": "sale",
  "maxItems": 100,
  "homeType": "",
  "proxyConfiguration": {
    "useApifyProxy": true,
    "apifyProxyGroups": [
      "RESIDENTIAL"
    ],
    "apifyProxyCountry": "US"
  }
}
```

## Output

```json
{
  "zpid": {
    "label": "ZPID",
    "format": "text"
  },
  "address": {
    "label": "Address",
    "format": "text"
  },
  "price": {
    "label": "Price (USD)",
    "format": "number"
  },
  "zestimate": {
    "label": "Zestimate (USD)",
    "format": "number"
  },
  "beds": {
    "label": "Beds",
    "format": "number"
  },
  "baths": {
    "label": "Baths",
    "format": "number"
  },
  "sqft": {
    "label": "Sqft",
    "format": "number"
  },
  "home_type": {
    "label": "Home Type",
    "format": "text"
  },
  "status": {
    "label": "Status",
    "format": "text"
  },
  "days_on_zillow": {
    "label": "Days on Zillow",
    "format": "number"
  },
  "broker_name": {
    "label": "Broker",
    "format": "text"
  },
  "url": {
    "label": "URL",
    "format": "link"
  }
}
```

## About this Actor

This example demonstrates how to use [Zillow Scraper — US Real Estate, Prices, Zestimate | from $3/1K](https://apify.com/bovi/zillow-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/bovi/zillow-scraper) to learn more, explore other use cases, and run it yourself.