Scrape a single Zillow property's full detail
curl --request POST \
--url https://api.scrapeunblocker.com/realestate/zillow-detail \
--header 'x-scrapeunblocker-key: <api-key>'import requests
url = "https://api.scrapeunblocker.com/realestate/zillow-detail"
headers = {"x-scrapeunblocker-key": "<api-key>"}
response = requests.post(url, headers=headers)
print(response.text)const options = {method: 'POST', headers: {'x-scrapeunblocker-key': '<api-key>'}};
fetch('https://api.scrapeunblocker.com/realestate/zillow-detail', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));{
"detail": [
{
"loc": [
"<string>"
],
"msg": "<string>",
"type": "<string>"
}
]
}Plugins
Scrape a single Zillow property's full detail
Fetches one Zillow property (by url or zpid) and returns the full record as JSON: price, zestimate, rentZestimate, beds, baths, area, lotSize, yearBuilt, homeType, status, description, priceHistory, facts, parking, listing brokerName/listingAgent, monthlyHoaFee, pricePerSqft, daysOnZillow, coordinates and the photos gallery. Companion to the Zillow search plugin (/realestate/zillow).
Scrape a single Zillow property's full detail
curl --request POST \
--url https://api.scrapeunblocker.com/realestate/zillow-detail \
--header 'x-scrapeunblocker-key: <api-key>'import requests
url = "https://api.scrapeunblocker.com/realestate/zillow-detail"
headers = {"x-scrapeunblocker-key": "<api-key>"}
response = requests.post(url, headers=headers)
print(response.text)const options = {method: 'POST', headers: {'x-scrapeunblocker-key': '<api-key>'}};
fetch('https://api.scrapeunblocker.com/realestate/zillow-detail', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));{
"detail": [
{
"loc": [
"<string>"
],
"msg": "<string>",
"type": "<string>"
}
]
}Authorizations
Your ScrapeUnblocker API key. Apply on every request.
Query Parameters
Zillow property URL, e.g. 'https://www.zillow.com/homedetails/.../29432984_zpid/'. Either url or zpid is required.
Zillow property id (zpid), e.g. '29432984'. Alternative to url.
Exit-IP country (ISO-2). Defaults to a US exit for Zillow.
Response
JSON with the full property record.

