Zillow Scraper: Listings, Agents, Zestimate & Filters avatar

Zillow Scraper: Listings, Agents, Zestimate & Filters

Pricing

$3.00 / 1,000 zillow listings

Go to Apify Store
Zillow Scraper: Listings, Agents, Zestimate & Filters

Zillow Scraper: Listings, Agents, Zestimate & Filters

Scrape Zillow for-sale, sold, and rental listings by city, ZIP, URL, ZPID, or dataset. Get prices, Zestimate, agent contacts, photos, property details, and history. Use fast search, full-detail enrichment, advanced filters, and listing change monitoring.

Pricing

$3.00 / 1,000 zillow listings

Rating

5.0

(2)

Developer

Kelopr

Kelopr

Maintained by Community

Actor stats

3

Bookmarked

134

Total users

23

Monthly active users

0.83 hours

Issues response

10 hours ago

Last modified

Share

Search, enrich, or monitor Zillow listings with pricing, Zestimate, agents, photos, history, and property filters.

Search, fully enrich, directly scrape, or monitor Zillow listings. Extract prices, Zestimate, agents, photos and property history with global filters for price, beds, area, HOA, days on Zillow, open houses and price cuts.

All examples below use fictional DEMO-* identifiers, reserved .test domains, and masked contact details. They do not represent real people, listings, products, or companies.

πŸš€ What this Actor does

  • Flexible collection: SEARCH, SEARCH_DETAILS, DETAIL, MONITOR.
  • Structured output: clean JSON records organized into overview views.
  • Production-ready: concurrency, retries, proxy support, limits, and source-aware diagnostics are exposed through the Actor input.
  • Easy automation: run from the Apify Console, API, schedules, webhooks, Make, Zapier, or any HTTP client.

πŸŽ›οΈ Modes and workflows

Mode or workflowWhat it does
SEARCHSearch listing cards with price, property, location, recency, and status filters.
SEARCH_DETAILSSearch and enrich every selected listing with detail data.
DETAILResolve exact property URLs or ZPIDs.
MONITORCompare a named snapshot and emit listing changes.

πŸ’‘ Common use cases

  • Property comps and inventory research
  • Price, status, and listing-history monitoring
  • Agent and market intelligence

πŸ“₯ Input schema

Configure the Actor in the Input tab or send the same JSON through the API. Fields not needed for your workflow can be omitted.

FieldTypeDescriptionDefault
modestringChoose Search for quick listing cards, Search + details for complete property records, Detail for known properties, or Monitor to detect listing changes. Allowed: SEARCH, SEARCH_DETAILS, DETAIL, MONITOR.SEARCH
propertyStatusstringChoose the Zillow market you want to search. In Detail mode this is only recorded as the expected status; a successfully fetched property is never discarded because of it. Allowed: ANY, FOR_SALE, SOLD, FOR_RENT.FOR_SALE
searchQueriesarrayUsed by Search, Search + details, and Monitor. Add a city, ZIP code, neighborhood, Zillow region slug, or full Zillow search URL. Each row starts a separate search.["Sonoma, CA"]
startUrlsarrayUsed only in Detail mode. Add one or more Zillow property pages. You can combine URLs with ZPIDs and an input dataset below.β€”
zpidsarrayOptional raw Zillow property IDs, for example 15800416. Each ID is resolved to its property page automatically.[]
datasetIdstringOptional dataset produced by a previous Search run. Items should contain zpid, detailUrl, hdpUrl, or url.β€”
maxPagesPerSearchintegerMaximum Zillow result pages collected for each location or search URL.1
maxResultsintegerGlobal limit after duplicate removal, filtering, and sorting. This is the maximum number of paid rows saved to Results.50
maxDetailUrlsintegerDetail: caps properties from all direct inputs. Search + details: caps complete property records after Maximum saved results. Use 0 for no additional cap.0
propertyTypestringKeep only one Zillow property category, or leave Any selected. Allowed: ANY, HOUSE, CONDO, TOWNHOUSE, MULTI_FAMILY, MANUFACTURED, LOT_LAND, APARTMENT.ANY
minPricenumberKeep properties priced at or above this amount.β€”
maxPricenumberKeep properties priced at or below this amount.β€”
minBedroomsnumberMinimum number of bedrooms.β€”
maxBedroomsnumberMaximum number of bedrooms.β€”
minBathroomsnumberMinimum number of bathrooms. Decimal values such as 1.5 are supported.β€”
maxBathroomsnumberMaximum number of bathrooms.β€”
minLivingAreanumberMinimum interior living area in square feet.β€”
maxLivingAreanumberMaximum interior living area in square feet.β€”
minLotSizenumberMinimum lot size in square feet.β€”
maxLotSizenumberMaximum lot size in square feet.β€”
minYearBuiltintegerOldest construction year to keep. Missing years are enriched from property details when this filter is active.β€”
maxYearBuiltintegerNewest construction year to keep.β€”
hoaStatusstringInclude every property, only properties with a positive monthly HOA fee, or properties with no reported HOA fee. Allowed: ANY, WITH_HOA, NO_HOA.ANY
minHoaFeenumberMinimum reported monthly HOA fee. Properties with missing HOA values are excluded while this range is active.β€”
maxHoaFeenumberMaximum reported monthly HOA fee.β€”
minDaysOnZillowintegerKeep listings visible on Zillow for at least this many days.β€”
maxDaysOnZillowintegerKeep listings visible on Zillow for no more than this many days.β€”
onlyWithPhotosbooleanExclude properties without a listing image or photo collection.false
onlyOpenHousesbooleanKeep only listings currently advertising an open house.false
onlyPriceReductionsbooleanKeep only listings with a detected price cut.false
sortBystringResults are deduplicated and filtered first, then the entire result set is sorted before the maximum result limit is applied. Allowed: RELEVANCE, PRICE_ASC, PRICE_DESC, BEDROOMS_DESC, BATHROOMS_DESC, LIVING_AREA_DESC, LOT_SIZE_DESC, YEAR_BUILT_DESC, NEWEST, PRICE_REDUCTION_DESC.RELEVANCE
monitorKeystringA stable name for this monitor, for example austin-family-homes. Leave empty to derive it automatically from the search and filters.``
resetMonitorbooleanStart a fresh baseline for this monitor. This run stores the current properties and returns no change rows.false
maxConcurrencyintegerNumber of requests processed at the same time. The default balances speed and reliability.5
maxRetriesintegerRetry budget for temporary source errors and incomplete responses.5
maxProxyRetriesintegerSeparate retry budget for temporary connection failures.5
maxCaptchaRetriesintegerSeparate retry budget when Zillow temporarily interrupts access.5
proxyobjectUS residential access is preconfigured and recommended because Zillow data is region-sensitive. The default is ready to use.{"useApifyProxy": true, "apifyProxyGroups": ["RESIDENTIAL"], "apifyProxyCountry": "US"}
rawOutputbooleanAdd the original gdpClientCache payload under _raw in Detail and Search + details outputs. Most users should leave this disabled.false

▢️ Example input

{
"mode": "SEARCH_DETAILS",
"propertyStatus": "FOR_SALE",
"searchQueries": [
"Austin, TX"
],
"maxResults": 50,
"minBedrooms": 2,
"maxPrice": 750000,
"onlyWithPhotos": true
}

πŸ“¦ Output schema

Each successful item is written to the default dataset. Select a dataset view in the Apify Console or export the full dataset as JSON, CSV, Excel, XML, or RSS.

overview β€” Results

A compact table for fast scanning and export.

Fields: zpid, imgSrc, displayAddress, streetAddress, city, state, zipcode, homeStatus, statusType, homeType, price, unformattedPrice, currency, bedrooms, beds, bathrooms, baths, livingArea, area, yearBuilt, detailUrl, hdpUrl

πŸ“€ Example output

{
"zpid": "DEMO-ZPID-01",
"displayAddress": "100 Example Street, Austin, TX 78701",
"city": "Austin",
"state": "TX",
"zipcode": "78701",
"homeStatus": "FOR_SALE",
"homeType": "SINGLE_FAMILY",
"price": 625000,
"currency": "USD",
"bedrooms": 3,
"bathrooms": 2,
"livingArea": 1680
}

Missing source values are returned as null, empty arrays, or documented availability/status fields; the Actor does not invent unavailable source data.

πŸ”Œ API example

Replace the placeholder with an Apify token and send the same input used in the Console:

curl -X POST "https://api.apify.com/v2/acts/trakk~zillow-scraper/runs?token=<YOUR_APIFY_TOKEN>" \
-H "Content-Type: application/json" \
-d '{"mode": "SEARCH_DETAILS", "propertyStatus": "FOR_SALE", "searchQueries": ["Austin, TX"], "maxResults": 50, "minBedrooms": 2, "maxPrice": 750000, "onlyWithPhotos": true}'

For synchronous integrations, use the run-sync-get-dataset-items API endpoint. For larger jobs, start an asynchronous run and consume its default dataset when the run succeeds.

🧩 Automation and exports

  • Schedule recurring runs from the Apify Console.
  • Trigger downstream systems with webhooks when a run succeeds or fails.
  • Reuse named monitoring keys or stores where the selected workflow supports change tracking.
  • Export dataset views to JSON, CSV, Excel, XML, or RSS, or access items through the Apify API.

❓ FAQ

Do I need a login or browser session?

Use only the inputs shown in the Actor schema. If authentication or cookies are supported, the relevant encrypted field is explicitly available in the Input tab; otherwise no account is required.

Why can some fields be empty?

Source pages vary by region, content type, privacy settings, and availability. Optional enrichment also depends on the selected mode. Empty values are preserved honestly instead of being guessed.

How should I run this at scale?

Start with a small representative input, inspect the dataset and cost, then raise item limits and concurrency gradually. Use Apify Proxy when the schema exposes it, and use schedules plus monitoring keys for recurring collection.

Is the example data real?

No. Every example in this README is intentionally fictional and uses demo identifiers, reserved domains, or masked contact values.