Links

Zillow Scraper API

The Zillow Scraper API allows developers to scrape property listings data in real-time. It can be easily accessed by requesting at the following endpoint: api.serpdog.io/zillow.
Here is the list of default parameters you can use with this API:
Parameter
Description
api_key required
This is your API key.
url
Type: String
URL of the Zillow page that you wish to scrape.
listings
Type: Boolean If there are multiple properties listed on the page, the value of "listing" will be true. Otherwise, if the page is solely dedicated to a particular property, the value of "listing" will be false. Note: If listings value is true then you will get JSON results but you will get HTML results if the value is false. The URL should be a Home Details URL when you are passing the false as the value.
html
Type: Boolean Default: false To render the response as raw HTML.
Note: Each Zillow API call will cost you 5 Credit.

API Example:

cURL
Node JS
Python
Java
Ruby
PHP
cURL "https://api.serpdog.io/zillow?api_key=API_KEY&url=YOUR_URL&listings=true"
const axios = require('axios');
axios.get('https://api.serpdog.io/zillow?api_key=API_KEY&url=YOUR_URL&listings=true')
.then(response => {
console.log(response.data);
})
.catch(error => {
console.log(error);
});
import requests
payload = {'api_key': 'APIKEY', 'url':'YOUR_URL' , 'listings':'true'}
resp = requests.get('https://api.serpdog.io/zillow', params=payload)
print (resp.text)
try {
String url = "https://api.serpdog.io/zillow?api_key=API_KEY&url=YOUR_URL&listings=true";
URL urlForGetRequest = new URL(url);
String readLine = null;
HttpURLConnection conection = (HttpURLConnection) urlForGetRequest.openConnection();
conection.setRequestMethod("GET");
int responseCode = conection.getResponseCode();
if (responseCode == HttpURLConnection.HTTP_OK) {
BufferedReader in = new BufferedReader(new InputStreamReader(conection.getInputStream()));
StringBuffer response = new StringBuffer();
while ((readLine = in.readLine()) != null) {
response.append(readLine);
}
in.close();
System.out.println(response.toString());
} else {
throw new Exception("Error in API Call");
}
} catch (Exception ex) {
ex.printStackTrace();
}
require 'net/http'
require 'json'
params = {
:api_key => "APIKEY",
:url=> "YOUR_URL",
:listings => "true"
}
uri = URI('https://api.serpdog.io/zillow')
uri.query = URI.encode_www_form(params)
website_content = Net::HTTP.get(uri)
print(website_content)
<?php
$url = "https://api.serpdog.io/zillow?api_key=API_KEY&url=YOUR_URL&listings=true";
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $url);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, TRUE);
curl_setopt($ch, CURLOPT_HEADER, FALSE);
curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, 0);
curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, 0);
$response = curl_exec($ch);
curl_close($ch);
print_r($response);
{
"price": "$178,000",
"address": "4466 W Manatee Loop #30A, Punta Gorda, FL 33950",
"property_link": "https://www.zillow.com/homedetails/4466-W-Manatee-Loop-30A-Punta-Gorda-FL-33950/2059405257_zpid/",
"property_summary": [
{
"property_detail_0": "2 bds",
"property_detail_1": "2 ba",
"property_detail_2": "1,344 sqft"
}
]
},
{
"price": "$427,900",
"address": "20020 Sweetbay Dr, North Fort Myers, FL 33917",
"property_link": "https://www.zillow.com/homedetails/20020-Sweetbay-Dr-North-Fort-Myers-FL-33917/295093123_zpid/",
"property_summary": [
{
"property_detail_0": "3 bds",
"property_detail_1": "2 ba",
"property_detail_2": "1,672 sqft"
}
]
},
{
"price": "$375,000",
"address": "1427 SE 22nd St, Cape Coral, FL 33990",
"property_link": "https://www.zillow.com/homedetails/1427-SE-22nd-St-Cape-Coral-FL-33990/45526137_zpid/",
"property_summary": [
{
"property_detail_0": "3 bds",
"property_detail_1": "2 ba",
"property_detail_2": "1,205 sqft"
}
]
},
{
"price": "$369,900",
"address": "449 Grant Blvd, Lehigh Acres, FL 33974",
"property_link": "https://www.zillow.com/homedetails/449-Grant-Blvd-Lehigh-Acres-FL-33974/103420492_zpid/",
"property_summary": [
{
"property_detail_0": "4 bds",
"property_detail_1": "2 ba",
"property_detail_2": "1,691 sqft"
}
]
},
{
"price": "$298,551",
"address": "368 Manly St, Pt Charlotte, FL 33953",
"property_link": "https://www.zillow.com/homedetails/368-Manly-St-Pt-Charlotte-FL-33953/103046413_zpid/",
"property_summary": [
{
"property_detail_0": "4 bds",
"property_detail_1": "2 ba",
"property_detail_2": "1,636 sqft"
}
]
},
{
"price": "$384,900",
"address": "49 Long Meadow Ln, Rotonda West, FL 33947",
"property_link": "https://www.zillow.com/homedetails/49-Long-Meadow-Ln-Rotonda-West-FL-33947/43586312_zpid/",
"property_summary": [
{
"property_detail_0": "3 bds",
"property_detail_1": "2 ba",
"property_detail_2": "1,447 sqft"
}
]
},
{
"price": "$339,900",
"address": "1600 Floyd Ave S, Lehigh Acres, FL 33976",
"property_link": "https://www.zillow.com/homedetails/1600-Floyd-Ave-S-Lehigh-Acres-FL-33976/89560741_zpid/",
"property_summary": [
{
"property_detail_0": "4 bds",
"property_detail_1": "2 ba",
"property_detail_2": "1,757 sqft"
}
]
},
{
"price": "$450,000",
"address": "6481 Thorman Rd, Pt Charlotte, FL 33981",
"property_link": "https://www.zillow.com/homedetails/6481-Thorman-Rd-Pt-Charlotte-FL-33981/69061671_zpid/",
"property_summary": [
{
"property_detail_0": "3 bds",
"property_detail_1": "2 ba",
"property_detail_2": "2,000 sqft"
}
]
},
{
"price": "$645,000",
"address": "551 Laurel Cherry Ln, Venice, FL 34293",
"property_link": "https://www.zillow.com/homedetails/551-Laurel-Cherry-Ln-Venice-FL-34293/47568394_zpid/",
"property_summary": [
{
"property_detail_0": "3 bds",
"property_detail_1": "2 ba",
"property_detail_2": "2,528 sqft"
}
]
},
{
"price": "$525,000",
"address": "3164 Royal Gardens Ave, Fort Myers, FL 33916",
"property_link": "https://www.zillow.com/homedetails/3164-Royal-Gardens-Ave-Fort-Myers-FL-33916/164203687_zpid/",
"property_summary": [
{
"property_detail_0": "4 bds",
"property_detail_1": "2 ba",
"property_detail_2": "2,032 sqft"
}
]
},
{
"price": "$410,000",
"address": "13651 Willow Bridge Dr, North Fort Myers, FL 33903",
"property_link": "https://www.zillow.com/homedetails/13651-Willow-Bridge-Dr-North-Fort-Myers-FL-33903/45416746_zpid/",
"property_summary": [
{
"property_detail_0": "3 bds",
"property_detail_1": "2 ba",
"property_detail_2": "1,988 sqft"
}
]
},
{
"price": "$539,000",
"address": "7293 Mineola Rd, Englewood, FL 34224",
"property_link": "https://www.zillow.com/homedetails/7293-Mineola-Rd-Englewood-FL-34224/103076912_zpid/",
"property_summary": [
{
"property_detail_0": "3 bds",
"property_detail_1": "2 ba",
"property_detail_2": "1,638 sqft"
}
]
},
{
"price": "$525,000",
"address": "2302 Heydon Cir W, Naples, FL 34120",
"property_link": "https://www.zillow.com/homedetails/2302-Heydon-Cir-W-Naples-FL-34120/81793983_zpid/",
"property_summary": [
{
"property_detail_0": "3 bds",
"property_detail_1": "2 ba",
"property_detail_2": "1,999 sqft"
}
]
},
{
"price": "$524,900",
"address": "3908 Ceitus Pkwy, Cape Coral, FL 33991",
"property_link": "https://www.zillow.com/homedetails/3908-Ceitus-Pkwy-Cape-Coral-FL-33991/45461708_zpid/",
"property_summary": [
{
"property_detail_0": "3 bds",
"property_detail_1": "2 ba",
"property_detail_2": "1,876 sqft"
}
]
},
{
"price": "$479,900",
"address": "3621 S Cranberry Blvd, North Port, FL 34286",
"property_link": "https://www.zillow.com/homedetails/3621-S-Cranberry-Blvd-North-Port-FL-34286/99831114_zpid/",
"property_summary": [
{
"property_detail_0": "3 bds",
"property_detail_1": "2 ba",
"property_detail_2": "1,825 sqft"
}
]
},
{
"price": "$314,900",
"address": "13511 Stratford Place Cir APT 206, Fort Myers, FL 33919",
"property_link": "https://www.zillow.com/homedetails/13511-Stratford-Place-Cir-APT-206-Fort-Myers-FL-33919/45484604_zpid/",
"property_summary": [
{
"property_detail_0": "2 bds",
"property_detail_1": "2 ba",
"property_detail_2": "1,862 sqft"
}
]
},
{
"price": "$879,000",
"address": "2138 Egret Cir, Sanibel, FL 33957",
"property_link": "https://www.zillow.com/homedetails/2138-Egret-Cir-Sanibel-FL-33957/45499698_zpid/",
"property_summary": [
{
"property_detail_0": "3 bds",
"property_detail_1": "2 ba",
"property_detail_2": "2,077 sqft"
}
]
},
{
"price": "$569,000",
"address": "13404 Bristol Park Way, Fort Myers, FL 33913",
"property_link": "https://www.zillow.com/homedetails/13404-Bristol-Park-Way-Fort-Myers-FL-33913/67460286_zpid/",
"property_summary": [
{
"property_detail_0": "4 bds",
"property_detail_1": "2 ba",
"property_detail_2": "2,000 sqft"
}
]
},
{
"price": "$239,900",
"address": "6490 Royal Woods Dr APT 6, Fort Myers, FL 33908",
"property_link": "https://www.zillow.com/homedetails/6490-Royal-Woods-Dr-APT-6-Fort-Myers-FL-33908/45433940_zpid/",
"property_summary": [
{
"property_detail_0": "3 bds",
"property_detail_1": "2 ba",
"property_detail_2": "1,076 sqft"
}
]
},
{
"price": "$369,900",
"address": "18266 Quadrille Ave, Pt Charlotte, FL 33948",
"property_link": "https://www.zillow.com/homedetails/18266-Quadrille-Ave-Pt-Charlotte-FL-33948/43534271_zpid/",
"property_summary": [
{
"property_detail_0": "2 bds",
"property_detail_1": "3 ba",
"property_detail_2": "1,336 sqft"
}
]
},
{
"price": "$400,000",
"address": "27 Watercolor Way #27, Naples, FL 34113",
"property_link": "https://www.zillow.com/homedetails/27-Watercolor-Way-27-Naples-FL-34113/2078514128_zpid/",
"property_summary": [
{
"property_detail_0": "4 bds",
"property_detail_1": "2 ba",
"property_detail_2": "1,483 sqft"
}
]
},
{
"price": "$189,000",
"address": "2244 Winkler Ave APT 311, Fort Myers, FL 33901",
"property_link": "https://www.zillow.com/homedetails/2244-Winkler-Ave-APT-311-Fort-Myers-FL-33901/45558685_zpid/",
"property_summary": [
{
"property_detail_0": "2 bds",
"property_detail_1": "2 ba",
"property_detail_2": "1,187 sqft"
}
]
},
{
"price": "$644,900",
"address": "8061 Sawyer Cir, North Port, FL 34288",
"property_link": "https://www.zillow.com/homedetails/8061-Sawyer-Cir-North-Port-FL-34288/70426360_zpid/",
"property_summary": [
{
"property_detail_0": "4 bds",
"property_detail_1": "2 ba",
"property_detail_2": "2,421 sqft"
}
]
},
{
"price": "$399,990",
"address": "3101 Brooklyn Ave, Pt Charlotte, FL 33952",
"property_link": "https://www.zillow.com/homedetails/3101-Brooklyn-Ave-Pt-Charlotte-FL-33952/103110490_zpid/",
"property_summary": [
{
"property_detail_0": "3 bds",
"property_detail_1": "2 ba",
"property_detail_2": "1,305 sqft"
}
]
},
{
"price": "$839,900",
"address": "50 Yellowhammer Dr, Placida, FL 33946",
"property_link": "https://www.zillow.com/homedetails/50-Yellowhammer-Dr-Placida-FL-33946/2074415720_zpid/",
"property_summary": [
{
"property_detail_0": "3 bds",
"property_detail_1": "2 ba",
"property_detail_2": "2,000 sqft"
}
]
},
{
"price": "$1,000,000",
"address": "760 Oxford Dr, Englewood, FL 34223",
"property_link": "https://www.zillow.com/homedetails/760-Oxford-Dr-Englewood-FL-34223/90165505_zpid/",
"property_summary": [
{
"property_detail_0": "2 bds",
"property_detail_1": "3 ba",
"property_detail_2": "1,900 sqft"
}
]
},
{
"price": "$425,000",
"address": "926 NE 17th St, Cape Coral, FL 33909",
"property_link": "https://www.zillow.com/homedetails/926-NE-17th-St-Cape-Coral-FL-33909/45529631_zpid/",
"property_summary": [
{
"property_detail_0": "3 bds",
"property_detail_1": "2 ba",
"property_detail_2": "1,936 sqft"
}
]
},
{
"price": "$439,000",
"address": "2634 Anguilla Dr, Cape Coral, FL 33991",
"property_link": "https://www.zillow.com/homedetails/2634-Anguilla-Dr-Cape-Coral-FL-33991/120108331_zpid/",
"property_summary": [
{
"property_detail_0": "2 bds",
"property_detail_1": "2 ba",
"property_detail_2": "1,542 sqft"
}
]
},
{
"price": "$364,900",
"address": "416 SE 24th St, Cape Coral, FL 33990",
"property_link": "https://www.zillow.com/homedetails/416-SE-24th-St-Cape-Coral-FL-33990/45557644_zpid/",
"property_summary": [
{
"property_detail_0": "2 bds",
"property_detail_1": "2 ba",
"property_detail_2": "1,142 sqft"
}
]
},
{
"price": "$740,000",
"address": "5075 Yacht Harbor Dr APT 203, Naples, FL 34112",
"property_link": "https://www.zillow.com/homedetails/5075-Yacht-Harbor-Dr-APT-203-Naples-FL-34112/43777757_zpid/",
"property_summary": [
{
"property_detail_0": "2 bds",
"property_detail_1": "2 ba",
"property_detail_2": "1,822 sqft"
}
]
},
{
"price": "$685,000",
"address": "1167 Rotonda Cir, Rotonda West, FL 33947",
"property_link": "https://www.zillow.com/homedetails/1167-Rotonda-Cir-Rotonda-West-FL-33947/84086800_zpid/",
"property_summary": [
{
"property_detail_0": "5 bds",
"property_detail_1": "4 ba",
"property_detail_2": "3,175 sqft"
}
]
},
{
"price": "$850,000",
"address": "27320 Driver Ln, Englewood, FL 34223",
"property_link": "https://www.zillow.com/homedetails/27320-Driver-Ln-Englewood-FL-34223/125992472_zpid/",
"property_summary": [
{
"property_detail_0": "3 bds",
"property_detail_1": "3 ba",
"property_detail_2": "2,337 sqft"
}
]
},
{
"price": "$479,900",
"address": "9188 Mandarin Rd, Fort Myers, FL 33967",
"property_link": "https://www.zillow.com/homedetails/9188-Mandarin-Rd-Fort-Myers-FL-33967/45485752_zpid/",
"property_summary": [
{
"property_detail_0": "3 bds",
"property_detail_1": "2 ba",
"property_detail_2": "1,038 sqft"
}
]
},
{
"price": "$775,000",
"address": "18221 Parkside Greens Dr, Fort Myers, FL 33908",
"property_link": "https://www.zillow.com/homedetails/18221-Parkside-Greens-Dr-Fort-Myers-FL-33908/66165795_zpid/",
"property_summary": [
{
"property_detail_0": "3 bds",
"property_detail_1": "3 ba",
"property_detail_2": "2,001 sqft"
}
]
},
{
"price": "$429,900",
"address": "37 Sportsman Pl, Rotonda West, FL 33947",
"property_link": "https://www.zillow.com/homedetails/37-Sportsman-Pl-Rotonda-West-FL-33947/43585914_zpid/",
"property_summary": [
{
"property_detail_0": "3 bds",
"property_detail_1": "2 ba",
"property_detail_2": "1,664 sqft"
}
]
},
{
"price": "$445,000",
"address": "7268 Mikasa Dr, Punta Gorda, FL 33950",
"property_link": "https://www.zillow.com/homedetails/7268-Mikasa-Dr-Punta-Gorda-FL-33950/98375312_zpid/",
"property_summary": [
{
"property_detail_0": "4 bds",
"property_detail_1": "2 ba",
"property_detail_2": "1,846 sqft"
}
]
},
{
"price": "$450,000",
"address": "253 Santarem Cir, Punta Gorda, FL 33983",
"property_link": "https://www.zillow.com/homedetails/253-Santarem-Cir-Punta-Gorda-FL-33983/43582144_zpid/",
"property_summary": [
{
"property_detail_0": "3 bds",
"property_detail_1": "2 ba",
"property_detail_2": "1,933 sqft"
}
]
},
{
"price": "$389,000",
"address": "344 SW 24th Pl, Cape Coral, FL 33991",
"property_link": "https://www.zillow.com/homedetails/344-SW-24th-Pl-Cape-Coral-FL-33991/89563017_zpid/",
"property_summary": [
{
"property_detail_0": "3 bds",
"property_detail_1": "2 ba",
"property_detail_2": "2,249 sqft"
}
]
},
{
"price": "$1,200,000",
"address": "1815 Cape Coral Pkwy W, Cape Coral, FL 33914",
"property_link": "https://www.zillow.com/homedetails/1815-Cape-Coral-Pkwy-W-Cape-Coral-FL-33914/103185433_zpid/",
"property_summary": [
{
"property_detail_0": "3 bds",
"property_detail_1": "4 ba",
"property_detail_2": "2,223 sqft"
}
]
},
]