If you searched "how to get a Zillow API key," you have probably already hit the frustrating part: tutorials that walk you through a signup form that doesn't exist, YouTube videos pointing at pages that redirect, and Python libraries that install fine and then fail on every request.
Here is the answer those tutorials won't give you: Zillow stopped issuing API keys in 2021. There is no signup form, no waitlist, no developer portal where a key eventually arrives. But the thing you actually want — Zillow property data, in JSON, behind an API key you control — still exists. This guide covers what happened, why the old instructions linger, and how to get a working key today.
What happened to Zillow API keys?
Zillow's original public API used a key called a ZWSID (Zillow Web Services ID). You registered on zillow.com, got the ID by email, and called endpoints like GetSearchResults and GetZestimate with it. A whole ecosystem grew around it: pyzillow and python-zillow for Python, ZillowR for R, hundreds of tutorials.
In 2021, Zillow retired the program. Existing ZWSIDs stopped working, new registrations closed, and data access moved to Bridge Interactive, Zillow Group's enterprise platform — which issues credentials only after an application and approval process that typically requires MLS affiliation. The full story is in Does Zillow have an API in 2026?
The ecosystem never got the memo. The old libraries are still on PyPI and CRAN, their docs still rank in search results, and secret-scanning tools still ship detectors for ZWSID keys — for a key type that has not been issued in five years. If a tutorial shows you a Zillow signup flow, check its date: it is describing a program that shut down in 2021.
Your three options in 2026
| Path | Who can get a key | Time to first request | Cost |
|---|---|---|---|
| Zillow public API (ZWSID) | Nobody — retired 2021 | Never | — |
| Bridge Interactive | Approved enterprise partners, typically MLS-affiliated | Weeks to months | Enterprise contract |
| Third-party API (APIllow) | Anyone | ~60 seconds | Free tier; paid from $9.99/mo |
Get a working key in 60 seconds
APIllow issues a key instantly — no approval process, no credit card for the free tier. Sign up, copy the key, and you are one request away from 50+ fields per property:
The response is the modern equivalent of what GetDeepSearchResults + GetZestimate used to return, in one call: address, beds/baths, square footage, listing status, zestimate, rent_zestimate, price_history, tax_history, schools, photos, and sold data including the sale date. The Python tutorial gets you from key to DataFrame in five minutes.
Migrating from the old ZWSID libraries
If you are resurrecting an old project built on pyzillow or python-zillow, the mapping is straightforward:
GetSearchResults(address → property) — send the address in theaddressesarray; the response includes the ZPID and full property record in one step.GetZestimate— read thezestimateandrent_zestimatefields from the same response. One quirk the old API never had: Zestimates are usually null on actively listed homes — the Zestimate API guide explains the workaround.GetDeepSearchResults— the standard response already includes the "deep" fields: lot size, year built, tax assessment, last sold price and date.- Rate limits — the old API capped at 1,000 calls/day per ZWSID. Modern equivalents are plan-based; the pricing comparison has the math.
What about "free Zillow API key" offers?
Search results and marketplace listings sometimes promise a free Zillow API key. Read the fine print: these are third-party scraper keys too — nobody is issuing official Zillow keys, whatever the landing page implies. The honest comparison is between third-party providers: data coverage (does it include sold dates and price history?), reliability, and per-request cost. We wrote up how to run that comparison in Is the Zillow API free in 2026?
Get your API key now
50 free requests a month, all data fields included, no credit card. Key issued instantly.
Get API KeyRelated reading
- The unofficial Zillow API, explained
- Does Zillow have an API in 2026?
- Zillow API discontinued? The 5 best alternatives
- Zillow API Python tutorial
- Is the Zillow API free in 2026?
Final takeaway
There is no way to get an official Zillow API key in 2026 — the program closed in 2021 and Bridge Interactive is enterprise-only. Skip the dead signup tutorials: a third-party key gets you the same property data in JSON, sixty seconds after you sign up.