# Zillow Property Listings Data Extractor

**Use case:** 

Extract up to 200 property listings from Zillow in New York, including prices, addresses, photos, and agent information for detailed market analysis.

## Input

```json
{
  "url": "https://www.zillow.com/new-york-ny/?searchQueryState=%7B%22isMapVisible%22%3Atrue%2C%22mapBounds%22%3A%7B%22north%22%3A40.988741695224775%2C%22south%22%3A40.405685665239744%2C%22east%22%3A-73.49353598046878%2C%22west%22%3A-74.46582601953128%7D%2C%22filterState%22%3A%7B%22sort%22%3A%7B%22value%22%3A%22globalrelevanceex%22%7D%7D%2C%22isListVisible%22%3Atrue%2C%22usersSearchTerm%22%3A%22new%20york%22%2C%22regionSelection%22%3A%5B%7B%22regionId%22%3A6181%2C%22regionType%22%3A6%7D%5D%7D",
  "keyword": "",
  "location": "New York, NY",
  "results_wanted": 200,
  "max_pages": 10,
  "proxyConfiguration": {
    "useApifyProxy": true,
    "apifyProxyGroups": [
      "RESIDENTIAL"
    ]
  }
}
```

## Output

```json
{
  "zpid": {
    "label": "ZPID",
    "format": "text"
  },
  "address": {
    "label": "Address",
    "format": "text"
  },
  "price": {
    "label": "Price",
    "format": "text"
  },
  "beds": {
    "label": "Beds",
    "format": "number"
  },
  "baths": {
    "label": "Baths",
    "format": "number"
  },
  "area_sqft": {
    "label": "Sqft",
    "format": "number"
  },
  "property_type": {
    "label": "Type",
    "format": "text"
  },
  "home_status": {
    "label": "Status",
    "format": "text"
  },
  "broker_name": {
    "label": "Broker",
    "format": "text"
  },
  "detail_url": {
    "label": "URL",
    "format": "link"
  },
  "image_url": {
    "label": "Image",
    "format": "image"
  },
  "days_on_zillow": {
    "label": "Days",
    "format": "number"
  },
  "latitude": {
    "label": "Latitude",
    "format": "number"
  },
  "longitude": {
    "label": "Longitude",
    "format": "number"
  },
  "scraped_at": {
    "label": "Scraped",
    "format": "date"
  }
}
```

## About this Actor

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