curl --request POST \
--url https://api.scrapeunblocker.com/realestate/zillow \
--header 'x-scrapeunblocker-key: <api-key>'import requests
url = "https://api.scrapeunblocker.com/realestate/zillow"
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', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));{
"detail": [
{
"loc": [
"<string>"
],
"msg": "<string>",
"type": "<string>"
}
]
}Scrape Zillow real-estate listings
Searches Zillow for location (a city/state or ZIP) and returns the listings as JSON: price, beds, baths, area, address, homeType, zestimate, rentZestimate, daysOnZillow, coordinates, broker and a clean url. Filter with status (for_sale / for_rent / sold), min_price/max_price, beds, baths and home_type, sort with sort, and collect up to max_results across pages.
curl --request POST \
--url https://api.scrapeunblocker.com/realestate/zillow \
--header 'x-scrapeunblocker-key: <api-key>'import requests
url = "https://api.scrapeunblocker.com/realestate/zillow"
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', 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
City/state or ZIP to search, e.g. 'Austin, TX' or '78704'.
Listing status: for_sale, for_rent, sold.
How many listings to collect across pages (~41 per page).
1 <= x <= 8201-based results page to start from.
x >= 1Ordering: newest, price_asc, price_desc, relevant, beds, sqft, lot.
Property type filter: houses, condos, townhomes, multi_family, apartments, manufactured, lots_land. Omit for all.
Minimum price (or monthly rent).
x >= 0Maximum price (or monthly rent).
x >= 0Minimum bedrooms.
x >= 0Minimum bathrooms.
x >= 0Exit-IP country (ISO-2). Defaults to a US exit for Zillow.
Response
JSON with a homes array plus region and totals.

