# Scrape Zillow Home Listings for sale

**Use case:** 

Zillow Listings Scraper API. Scrape Zillow homes/listings for sale/sold/for rent with multiple filters options. Fast. Smart location search.

## Input

```json
{
  "searchType": "FOR_SALE",
  "locations": [
    "Newark, DE"
  ],
  "maxResults": 150,
  "maxPrice": 1000000,
  "noPetsAllowed": false,
  "forRentByOwner": false
}
```

## Output

```json
{
  "street_address": {
    "label": "Address"
  },
  "city": {
    "label": "City"
  },
  "state": {
    "label": "State"
  },
  "zipcode": {
    "label": "Zip"
  },
  "price": {
    "label": "Price"
  },
  "price_change": {
    "label": "Price Change"
  },
  "price_changed_date": {
    "label": "Price Changed"
  },
  "zestimate": {
    "label": "Zestimate"
  },
  "rent_zestimate": {
    "label": "Rent Estimate"
  },
  "bedrooms": {
    "label": "Beds"
  },
  "bathrooms": {
    "label": "Baths"
  },
  "living_area_sqft": {
    "label": "Sqft"
  },
  "year_built": {
    "label": "Year Built"
  },
  "property_type": {
    "label": "Type"
  },
  "listing_status": {
    "label": "Status"
  },
  "days_on_zillow": {
    "label": "Days Listed"
  },
  "is_sold_by_owner": {
    "label": "FSBO"
  },
  "is_sold_by_agent": {
    "label": "Agent Listed"
  },
  "agent_name": {
    "label": "Agent"
  },
  "broker_name": {
    "label": "Broker"
  },
  "main_image": {
    "label": "Photo"
  },
  "url": {
    "label": "Listing URL"
  },
  "highlights": {
    "label": "Highlights"
  }
}
```

## About this Actor

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