# Scrape Zillow Homes for Sale by City

**Use case:** 

Turn any city into a bulk feed of Zillow for-sale listings. Enter one or more locations and a max item cap, and the scraper returns listing-level rows with zillow_id, address, price, price_value, bedrooms, bathrooms, living_area, home_type, status, zestimate, days_on_zillow, latitude, longitude, image, photos and detail_url. Ideal for market research, lead lists and price monitoring.

## Input

```json
{
  "searchLinks": [
    "https://www.zillow.com/homes/Miami,-FL_rb/"
  ],
  "forSaleLocations": [
    "Austin, TX"
  ],
  "forSaleListingTypes": [
    "Owner posted",
    "Agent listed",
    "New construction",
    "Foreclosures",
    "Auctions"
  ],
  "forSalePriceMin": 200000,
  "forSalePriceMax": 600000,
  "forSaleBedroomsMin": "0",
  "forSaleBathroomsMin": "0",
  "forSaleHomeTypes": [
    "Houses",
    "Townhomes",
    "Multi-family",
    "Condos/Co-ops",
    "Lots/Land",
    "Apartments",
    "Manufactured"
  ],
  "forSaleMaxHoa": "any",
  "forSaleParkingSpotsMin": "0",
  "forSaleMustHaveGarage": false,
  "forSaleSquareFeetMin": 1000,
  "forSaleSquareFeetMax": 3000,
  "forSaleLotSizeMin": 2000,
  "forSaleLotSizeMax": 43560,
  "forSaleYearBuiltMin": 2000,
  "forSaleYearBuiltMax": 2024,
  "forSaleDaysOnZillow": "any",
  "forSaleMustHaveOpenHouse": false,
  "forSaleMustHave3DTour": false,
  "forSaleMustHavePriceReduction": false,
  "forSaleKeywords": "pool",
  "forSaleSortBy": "globalrelevanceex",
  "forRentLocations": [
    "Austin, TX"
  ],
  "forRentHomeType": "any",
  "forRentSpace": "entirePlace",
  "forRentPriceMin": 1200,
  "forRentPriceMax": 2500,
  "forRentBedroomsMin": "0",
  "forRentBathroomsMin": "0",
  "forRentSquareFeetMin": 800,
  "forRentSquareFeetMax": 2000,
  "forRentYearBuiltMin": 2000,
  "forRentYearBuiltMax": 2024,
  "forRentDaysOnZillow": "any",
  "forRentMustHave3DTour": false,
  "forRentMustHaveGarage": false,
  "forRentMustHavePriceReduction": false,
  "forRentKeywords": "pool",
  "forRentSortBy": "priorityscore",
  "soldLocations": [
    "Greenville, SC"
  ],
  "soldInLast": "any",
  "soldPriceMin": 100000,
  "soldPriceMax": 500000,
  "soldBedroomsMin": "0",
  "soldBathroomsMin": "0",
  "soldHomeTypes": [
    "Houses",
    "Townhomes",
    "Multi-family",
    "Condos/Co-ops",
    "Lots/Land",
    "Apartments",
    "Manufactured"
  ],
  "soldMaxHoa": "any",
  "soldParkingSpotsMin": "0",
  "soldMustHaveGarage": false,
  "soldSquareFeetMin": 1000,
  "soldSquareFeetMax": 3000,
  "soldLotSizeMin": 2000,
  "soldLotSizeMax": 43560,
  "soldYearBuiltMin": 2000,
  "soldYearBuiltMax": 2024,
  "soldMustHave3DTour": false,
  "soldMustHavePriceReduction": false,
  "soldKeywords": "pool",
  "soldSortBy": "globalrelevanceex",
  "maxItems": 50,
  "followZillowLocationSuggestions": true
}
```

## Output

```json
{
  "zillow_id": {
    "label": "Zillow ID (ZPID)",
    "format": "text"
  },
  "address": {
    "label": "Address",
    "format": "text"
  },
  "price": {
    "label": "Price",
    "format": "text"
  },
  "price_value": {
    "label": "Price (numeric)",
    "format": "number"
  },
  "status": {
    "label": "Status Text",
    "format": "text"
  },
  "status_type": {
    "label": "Status Type",
    "format": "text"
  },
  "home_type": {
    "label": "Home Type",
    "format": "text"
  },
  "bedrooms": {
    "label": "Bedrooms",
    "format": "number"
  },
  "bathrooms": {
    "label": "Bathrooms",
    "format": "number"
  },
  "living_area": {
    "label": "Living Area (sqft)",
    "format": "number"
  },
  "zestimate": {
    "label": "Zestimate",
    "format": "number"
  },
  "rent_zestimate": {
    "label": "Rent Zestimate",
    "format": "number"
  },
  "days_on_zillow": {
    "label": "Days on Zillow",
    "format": "number"
  },
  "detail_url": {
    "label": "Detail URL",
    "format": "link"
  },
  "image": {
    "label": "Cover Image",
    "format": "image"
  },
  "photos": {
    "label": "All Photos",
    "format": "array"
  },
  "home_info": {
    "label": "Raw Home Info",
    "format": "object"
  },
  "sold_price": {
    "label": "Sold Price",
    "format": "text"
  },
  "date_sold": {
    "label": "Date Sold",
    "format": "text"
  },
  "lot_area_value": {
    "label": "Lot Size",
    "format": "number"
  },
  "lot_area_unit": {
    "label": "Lot Size Unit",
    "format": "text"
  },
  "home_status": {
    "label": "Home Status",
    "format": "text"
  },
  "tax_assessed_value": {
    "label": "Tax Assessed Value",
    "format": "number"
  },
  "time_on_zillow": {
    "label": "Time on Zillow (ms)",
    "format": "number"
  },
  "marketing_status": {
    "label": "Marketing Status",
    "format": "text"
  },
  "price_change": {
    "label": "Price Change",
    "format": "number"
  },
  "price_reduction": {
    "label": "Price Reduction",
    "format": "text"
  },
  "date_price_changed": {
    "label": "Date Price Changed",
    "format": "text"
  },
  "coming_soon_date": {
    "label": "Coming Soon Date",
    "format": "text"
  },
  "listing_sub_type": {
    "label": "Listing Sub-type",
    "format": "object"
  },
  "new_construction_type": {
    "label": "New Construction Type",
    "format": "text"
  },
  "builder_name": {
    "label": "Builder Name",
    "format": "text"
  },
  "unit": {
    "label": "Unit",
    "format": "text"
  },
  "open_house": {
    "label": "Open House",
    "format": "text"
  },
  "open_house_start": {
    "label": "Open House Start",
    "format": "text"
  },
  "open_house_end": {
    "label": "Open House End",
    "format": "text"
  },
  "street": {
    "label": "Street",
    "format": "text"
  },
  "city": {
    "label": "City",
    "format": "text"
  },
  "state": {
    "label": "State",
    "format": "text"
  },
  "zipcode": {
    "label": "Zipcode",
    "format": "text"
  },
  "latitude": {
    "label": "Latitude",
    "format": "number"
  },
  "longitude": {
    "label": "Longitude",
    "format": "number"
  },
  "broker_name": {
    "label": "Broker Name",
    "format": "text"
  },
  "mls_info": {
    "label": "MLS Info",
    "format": "text"
  },
  "listing_agent": {
    "label": "Listing Agent",
    "format": "text"
  },
  "provider_listing_id": {
    "label": "Provider / MLS Listing ID",
    "format": "text"
  },
  "has_3d_model": {
    "label": "Has 3D Model",
    "format": "boolean"
  },
  "has_video": {
    "label": "Has Video",
    "format": "boolean"
  },
  "building_name": {
    "label": "Building Name (rentals)",
    "format": "text"
  },
  "units": {
    "label": "Units (rental buildings)",
    "format": "array"
  },
  "min_rent": {
    "label": "Min Rent (rentals)",
    "format": "number"
  },
  "max_rent": {
    "label": "Max Rent (rentals)",
    "format": "number"
  },
  "available_units": {
    "label": "Available Units (rentals)",
    "format": "number"
  },
  "monthly_fee_min": {
    "label": "Monthly Fee Min (rentals)",
    "format": "number"
  },
  "monthly_fee_max": {
    "label": "Monthly Fee Max (rentals)",
    "format": "number"
  },
  "contact_phone": {
    "label": "Contact Phone (rentals)",
    "format": "text"
  },
  "search_term": {
    "label": "Search Term",
    "format": "text"
  }
}
```

## About this Actor

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


## How to integrate an Actor?

This Task's input is already configured above. Use it as-is rather than inventing a new one.

Do not guess an integration path. Every one of them is in the agent quickstart at https://apify.com/agents.md: the Apify MCP server, Agent Skills with the Apify CLI, the JavaScript and Python clients, the REST API, and the account-free path for an agent with no human to sign in. It also carries the rule on stating cost before the first paid run.

For full API examples (JavaScript, Python, CLI, MCP, OpenAPI), see this Task's Actor page: https://apify.com/delicious_zebu/zillow-property-data-scraper.md

Each client library has reference documentation the quickstart does not restate: [JavaScript/TypeScript](https://docs.apify.com/api/client/js/docs.md) (`npm install apify-client`) and [Python](https://docs.apify.com/api/client/python/docs.md) (`pip install apify-client`).
