Zillow Property Scraper
Pricing
Pay per usage
Zillow Property Scraper
Scrape Zillow property listings by URL, zpid, or address. Get price, beds, baths, photos, price & tax history, schools & agent contacts as JSON, CSV, or Excel.
Pricing
Pay per usage
Rating
0.0
(0)
Developer
Rahul Nath
Maintained by CommunityActor stats
0
Bookmarked
3
Total users
2
Monthly active users
a day ago
Last modified
Categories
Share
Zillow Property Scraper 🏡
Scrape Zillow property listings at scale — no Zillow API key required. Feed in Zillow property URLs or IDs and get clean, structured data back: price, beds, baths, square footage, photos, price & tax history, nearby schools, and listing agent contacts. Export to JSON, CSV, or Excel, or pull it straight from the API.
Fast and cheap by design — no heavy browser rendering and no per-page captcha solving.
⚡ What this Zillow scraper does
- 🏠 Extract full Zillow listing data — for-sale, for-rent, and sold properties.
- 📇 Capture agent & broker contacts — names, phone numbers, brokerage.
- 🖼️ Grab every listing photo in full resolution.
- 📈 Pull price history, tax history, and Zestimate® for valuation and comps.
- 🎓 Include nearby schools with ratings and distances.
- 🧱 Resilient extraction — reads Zillow's own data model, so it survives layout tweaks.
- ⚡ Fast & cheap — lightweight requests, no browser; tiny proxy usage per property.
- 📤 Export anywhere — JSON, CSV, Excel, or the Apify dataset API.
📊 What Zillow data can I scrape?
Each result is the full, raw Zillow property object — every native field Zillow's own frontend receives. That includes, among 100+ fields:
| Category | Fields |
|---|---|
| Identity | zpid, maloneId, homeStatus, homeType, listingDataSource |
| Pricing | price, currency, zestimate, rentZestimate |
| Size & layout | bedrooms, bathrooms, livingArea, lotSize, yearBuilt, resoFacts |
| Location | address (street/city/state/zip/neighborhood), latitude, longitude, county |
| Media | responsivePhotos[] (full mixedSources jpeg + webp at every resolution) |
| History | priceHistory[], taxHistory[] |
| Neighborhood | schools[], walk/transit scores |
| Listing | description, daysOnZillow, mlsid, parcelId |
| Contacts | attributionInfo (agent/broker name, phone, brokerage) |
💡 What can I use Zillow data for?
- Build a real-estate lead list of listing agents and brokers.
- Track price drops and market trends across a ZIP code or metro.
- Feed valuation / comps models and investment dashboards.
- Sync live listings into a CRM, spreadsheet, or internal portal.
- Power a property search app without paying for the official Zillow API.
🚀 How to use the Zillow Property Scraper
The scraper pulls each listing's full data efficiently over plain HTTP — no browser rendering — so it's fast and extremely cheap: a few KB per property instead of megabytes of a rendered page.
Zillow is protected by PerimeterX, so requests need to come from a clean IP. Pair the scraper with Apify Residential proxies; because traffic is tiny, the residential cost is minimal and a free plan's monthly credit stretches to thousands of listings.
You can start from any of three inputs — mix and match them freely:
- Property URLs — full Zillow
homedetailslinks - ZPIDs — Zillow property IDs
- Addresses — plain addresses, resolved to properties automatically. Use the full address (street + unit + city + state + zip) for an exact match; partial addresses resolve to Zillow's best guess (which may be a nearby/wrong property). The matched address is logged for each run.
Then:
- Add your URLs, zpids, and/or addresses.
- Set Proxy configuration → Residential (US).
- Click Start.
Note on proxies: the shared residential pool contains some IPs already flagged for Zillow, so a request may take a few automatic retries to land on a clean IP. For instant, first-try success (like paid commercial scrapers), plug in your own dedicated residential proxies.
⬇️ Input example
{"urls": ["https://www.zillow.com/homedetails/1000-5th-Ave-New-York-NY-10028/2069473617_zpid/"],"zpids": ["2069473617"],"addresses": ["1122 N Dubuque St #1136-8, Iowa City, IA 52245"],"proxyConfiguration": {"useApifyProxy": true,"apifyProxyGroups": ["RESIDENTIAL"],"apifyProxyCountry": "US"},"maxItems": 100,"maxConcurrency": 5}
⬆️ Output example
Each dataset item is the complete raw Zillow property object (100+ fields). Abbreviated:
{"zpid": 2069473617,"maloneId": "2548128478","city": "Iowa City","state": "IA","homeStatus": "OTHER","address": {"streetAddress": "1122 N Dubuque St #1136-8","city": "Iowa City","state": "IA","zipcode": "52245"},"bedrooms": 3,"bathrooms": 2,"price": 0,"streetAddress": "1122 N Dubuque St #1136-8","zipcode": "52245","listingDataSource": "Legacy","responsivePhotos": [{"caption": "","url": "https://photos.zillowstatic.com/fp/....jpg","mixedSources": {"jpeg": [{ "url": "...-cc_ft_192.jpg", "width": 192 }, "... up to 1536" ],"webp": [{ "url": "...-cc_ft_192.webp", "width": 192 }, "... up to 1536" ]}}],"priceHistory": [ ... ],"taxHistory": [ ... ],"schools": [ ... ],"resoFacts": { ... },"attributionInfo": { "agentName": "...", "agentPhoneNumber": "...", "brokerName": "..." }}
⚙️ Input reference
| Field | Type | Default | Description |
|---|---|---|---|
urls | array | — | Zillow detail URLs (.../homedetails/.../<zpid>_zpid/) |
zpids | array | — | Zillow property IDs; used to build URLs when you don't have the link |
addresses | array | — | Plain property addresses; each is resolved to a property automatically |
proxyConfiguration | object | Residential US | Residential proxies recommended — gives requests a clean IP |
maxItems | integer | 0 | Cap the number of properties (0 = no limit) |
maxConcurrency | integer | 5 | Parallel requests |
🔌 Use it via API
Run the scraper and collect results from any language with the Apify client.
JavaScript / TypeScript
import { ApifyClient } from 'apify-client';const client = new ApifyClient({ token: 'YOUR_APIFY_TOKEN' });const run = await client.actor('YOUR_USERNAME/zillow-property-scraper').call({urls: ['https://www.zillow.com/homedetails/.../2069473617_zpid/'],proxyConfiguration: { useApifyProxy: true, apifyProxyGroups: ['RESIDENTIAL'] },});const { items } = await client.dataset(run.defaultDatasetId).listItems();console.log(items);
Python
from apify_client import ApifyClientclient = ApifyClient("YOUR_APIFY_TOKEN")run = client.actor("YOUR_USERNAME/zillow-property-scraper").call(run_input={"urls": ["https://www.zillow.com/homedetails/.../2069473617_zpid/"],"proxyConfiguration": {"useApifyProxy": True, "apifyProxyGroups": ["RESIDENTIAL"]},})for item in client.dataset(run["defaultDatasetId"]).iterate_items():print(item)
CLI
npx apify call YOUR_USERNAME/zillow-property-scraper \--input '{"urls":["https://www.zillow.com/homedetails/.../2069473617_zpid/"]}'
🔎 Getting zpids to scrape
This scraper works on property pages. To discover which properties to scrape, pair it with a
Zillow search/map step: run a location search to collect zpids (or full URLs), then feed
those into this actor. That gives you a complete search → detail pipeline.
❓ FAQ
Do I need a Zillow API key? No — just add URLs, zpids, or addresses and click Start.
Can I scrape by address? Yes. Put full addresses (street + unit + city + state + zip) in the
addresses field and each is resolved to its property automatically. The matched address is shown
in the run log so you can verify it.
Why do I need proxies? Zillow blocks datacenter and free-proxy IPs. Use Apify Residential proxies so requests come from clean, real-visitor IPs. Traffic per property is tiny, so the cost stays low.
What does each result contain? The complete raw Zillow property object — 100+ fields including price, beds/baths, photos, price & tax history, schools, and agent/broker contacts.
What formats can I export? JSON, CSV, Excel, XML, or the dataset API.
Is scraping Zillow legal? This Actor collects only publicly available data. You are responsible for complying with Zillow's Terms of Service and applicable laws, and for not misusing personal data or redistributing copyrighted content (photos, descriptions) beyond permitted use.
⚠️ Disclaimer
This Actor is an independent tool and is not affiliated with, endorsed by, or connected to Zillow in any way. "Zillow" and "Zestimate" are trademarks of their respective owners and are used here only to describe what the Actor works with. Use it solely to collect publicly available data in compliance with Zillow's Terms of Service and applicable laws.
💬 Support
Have a question, hit a bug, or need a custom scraping job? Open the Issues tab on this Actor's page — happy to help.