Zillow Scraper — Property Listings by City & ZIP avatar

Zillow Scraper — Property Listings by City & ZIP

Pricing

from $1.80 / 1,000 results

Go to Apify Store
Zillow Scraper — Property Listings by City & ZIP

Zillow Scraper — Property Listings by City & ZIP

Scrape Zillow listings for any US location: price, address, beds, baths, square footage, Zestimate, coordinates, broker and days on market. For sale, for rent or sold. No API key. Export to JSON/CSV/Excel.

Pricing

from $1.80 / 1,000 results

Rating

0.0

(0)

Developer

Logiover

Logiover

Maintained by Community

Actor stats

0

Bookmarked

2

Total users

1

Monthly active users

17 hours ago

Last modified

Share

Zillow Scraper — Export Property Listings by City or ZIP

Scrape Zillow property listings for any US market and export them to CSV, JSON or Excel. Search a city, a neighbourhood or a ZIP code and get every listing with price, full address, beds, baths, square footage, Zestimate, coordinates, listing brokerage and days on market — for sale, for rent, or recently sold.

No Zillow API key. No login. No browser automation to babysit.


Why people use a Zillow scraper

Zillow has no public API for listing data. The official Bridge API is limited to licensed MLS participants, and the public site refuses ordinary HTTP clients. That leaves three options: pay an enterprise data vendor, build and maintain your own anti-bot stack, or run this Actor.

This is the third option. You get a normalised table of listings, priced per row, with no infrastructure to keep alive.


What this Actor extracts

FieldTypeDescription
zpidstringZillow's unique property identifier
detailUrlstringLink to the full listing page
statusType / statusTextstringFOR_SALE, FOR_RENT, SOLD and the label shown on the card
price / priceTextnumber / stringAsking or sold price as a number, plus Zillow's formatted string
zestimatenumberZillow's estimated market value
rentZestimatenumberZillow's estimated monthly rent
taxAssessedValuenumberAssessed value on record
addressstringFull address line
street, city, state, zipcodestringAddress split into components
beds, bathsnumberBedroom and bathroom counts
areaSqftnumberLiving area in square feet
lotAreaValue / lotAreaUnitnumber / stringLot size and its unit
homeTypestringSINGLE_FAMILY, CONDO, TOWNHOUSE, MULTI_FAMILY, LOT
daysOnZillownumberHow long the listing has been live
latitude, longitudenumberCoordinates, ready to map
brokerNamestringListing brokerage
isZillowOwnedbooleanZillow-owned inventory flag
imageUrlstringPrimary listing photo
searchLocation, listingTypestringWhich query produced the row
scrapedAtstringUTC timestamp of extraction

Numbers are stored as real numbers, not strings, so you can sort, filter and pivot the export without cleaning it first.


Input

{
"locations": ["austin-tx", "miami-fl", "denver-co", "90210"],
"listingType": "forSale",
"maxPagesPerLocation": 20,
"maxResults": 5000
}
InputDefaultNotes
locationsdefault marketCity, neighbourhood or ZIP as it appears in a Zillow URL. A full Zillow search URL also works.
listingTypeforSaleforSale, forRent or sold.
maxPagesPerLocation5Zillow returns about 40 listings per page.
maxResults1000Global cap for the run. 0 = unlimited.

Nothing is required. Run it with empty input ({}) and it scrapes a busy default market, so you can see the exact output shape before configuring anything.

More ways to run it

{ "locations": ["austin-tx"], "listingType": "sold" }
{ "locations": ["miami-fl", "tampa-fl", "orlando-fl"], "listingType": "forRent" }
{ "locations": ["https://www.zillow.com/seattle-wa/"], "maxPagesPerLocation": 20 }
{ "locations": ["10001", "10002", "10003"], "maxResults": 0 }

Output sample

{
"zpid": "2101031832",
"detailUrl": "https://www.zillow.com/homedetails/6702-Cat-Creek-Trl-Austin-TX-78731/2101031832_zpid/",
"statusType": "FOR_SALE",
"price": 500000,
"priceText": "$500,000",
"address": "6702 Cat Creek Trl, Austin, TX 78731",
"street": "6702 Cat Creek Trl",
"city": "Austin",
"state": "TX",
"zipcode": "78731",
"beds": 2,
"baths": 2,
"areaSqft": 1270,
"homeType": "SINGLE_FAMILY",
"daysOnZillow": 5,
"latitude": 30.362926,
"longitude": -97.77918,
"brokerName": "Compass RE Texas, LLC",
"scrapedAt": "2026-08-06T18:12:00.000Z"
}

Use cases

Comparable sales analysis

Set listingType to sold and pull recent transactions for a ZIP. Price, square footage and beds come back as numbers, so a price-per-square-foot comparison is one spreadsheet formula away.

Real estate investor sourcing

Scrape several markets at once and filter on price, areaSqft, daysOnZillow and homeType. A property sitting well past the local median days-on-market is a negotiation opening.

Market monitoring and reporting

Run it on a schedule and snapshot inventory, median price and days on market per city. Because every row carries scrapedAt, exports stack into a time series without extra work.

Lead generation for agents and vendors

brokerName gives you the listing brokerage for every property in a market — a clean, current list of who is active where.

Mapping and geospatial analysis

latitude and longitude are numeric on every row, so the export drops straight into Mapbox, Kepler, QGIS or a PostGIS table.


Integrating the results

Every run writes to a dataset you can download as JSON, CSV, Excel, XML or JSONL, or read through the Apify API.

HTTP

curl "https://api.apify.com/v2/acts/logiover~zillow-property-scraper/run-sync-get-dataset-items?token=YOUR_TOKEN" \
-H "Content-Type: application/json" \
-d '{"locations":["austin-tx"],"maxResults":500}'

Python

from apify_client import ApifyClient
client = ApifyClient("YOUR_TOKEN")
run = client.actor("logiover/zillow-property-scraper").call(
run_input={"locations": ["austin-tx", "miami-fl"], "maxResults": 2000}
)
for item in client.dataset(run["defaultDatasetId"]).iterate_items():
print(item["address"], item["price"], item["beds"])

JavaScript

import { ApifyClient } from 'apify-client';
const client = new ApifyClient({ token: 'YOUR_TOKEN' });
const run = await client.actor('logiover/zillow-property-scraper').call({
locations: ['denver-co'],
listingType: 'sold',
});
const { items } = await client.dataset(run.defaultDatasetId).listItems();

Results can also be pushed to Google Sheets, Airtable, Slack, Zapier or Make through Apify integrations, or fetched by an AI agent over MCP.


Frequently asked questions

Does Zillow have a public API for listings?

Not for general use. Zillow's Bridge API is restricted to licensed MLS participants and does not serve the public listing feed. Scraping the public site is the practical route for market research, and this Actor does it for you.

How many listings can I get in one run?

As many as the market has. A single run in testing returned 5,000 listings across eight cities with every key field populated. Raise maxResults and maxPagesPerLocation to go further; set maxResults to 0 for no cap.

This Actor reads publicly available pages — the same ones any visitor sees — and does not log in, bypass a paywall or collect personal data. How you use the output is your responsibility; check Zillow's terms and your local rules, and take advice before redistributing the data commercially.

Why does it need a residential proxy?

Zillow refuses datacenter IP ranges outright for this content. The Actor runs on residential proxy automatically and takes a fresh exit IP per attempt — you do not need to configure anything.

Why did a run return fewer rows than I asked for?

Zillow refuses requests in bursts that last minutes rather than per request. The Actor spreads its retries out to cross those windows, but a very large run can still hit one at the end. Re-run it, or split large jobs across several smaller runs.

Can I get the full property record, not just the listing card?

Yes — that is a separate Actor. See below.


  • Zillow Property Detail Scraper — feed it the zpid values from this run to get taxes, HOA, year built, photos, assigned schools, price history and agent details.
  • Redfin Scraper and Realtor.com Scraper — the same markets from other sources, for cross-checking coverage.
  • Website Contact Scraper — turn brokerage names into contact details.

A natural pipeline: search a market here → feed the ZPIDs into the detail Actor → enrich brokerages with contact data.


Pricing

Pay per result. You are charged for the rows you actually receive, plus a negligible flat fee when a run starts. No monthly subscription and no minimum commitment, so a small test run costs cents.


This Actor uses publicly available data. Zillow is a trademark of Zillow, Inc. This is an independent tool and is not affiliated with, endorsed by, or sponsored by Zillow.