# Scrape New Construction Homes on Zillow

**Use case:** 

Scrape new construction homes for sale on Zillow by city. Get price, Zestimate, beds, baths, sqft, year built, home type, address and photos for new builds.

## Input

```json
{
  "locations": [
    "Phoenix, AZ"
  ],
  "listingType": "forSale",
  "forSaleByOwnerOnly": false,
  "minYearBuilt": 2023,
  "homeTypes": [],
  "daysOnZillow": "",
  "sort": "relevant",
  "includePropertyDetails": false,
  "extractAgentLeads": false,
  "maxPhotosPerListing": 10,
  "maxResults": 100,
  "maxResultsPerSearch": 0,
  "maxRunSeconds": 240,
  "detailConcurrency": 3,
  "deduplicateResults": true,
  "monitorMode": false,
  "monitorStoreName": "zillow-scraper-monitor",
  "proxyConfiguration": {
    "useApifyProxy": true,
    "apifyProxyGroups": [
      "RESIDENTIAL"
    ]
  }
}
```

## Output

```json
{
  "type": {
    "label": "Type"
  },
  "statusText": {
    "label": "Status"
  },
  "price": {
    "label": "Price"
  },
  "address": {
    "label": "Address"
  },
  "city": {
    "label": "City"
  },
  "state": {
    "label": "State"
  },
  "zipcode": {
    "label": "ZIP"
  },
  "bedrooms": {
    "label": "Beds"
  },
  "bathrooms": {
    "label": "Baths"
  },
  "livingArea": {
    "label": "Sqft"
  },
  "homeType": {
    "label": "Type"
  },
  "buildingName": {
    "label": "Building"
  },
  "unitCount": {
    "label": "Units"
  },
  "leasingPhone": {
    "label": "Leasing phone"
  },
  "zestimate": {
    "label": "Zestimate"
  },
  "daysOnZillow": {
    "label": "Days on Zillow"
  },
  "leadScore": {
    "label": "Lead score"
  },
  "url": {
    "label": "URL"
  }
}
```

## About this Actor

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