The Zillow actor extracts the embedded data payload from a property detail page rather than scraping the DOM, so results stay consistent across single-family, condo, multi-family, and building pages. When Zillow returns its anti-bot wall, the actor detects it explicitly, returns a clear error, and recommends the residential-proxy option.
Request
Send a POST to /v1/actors/zillow with a target url. Enable stealth or the residential-proxy option for sites with aggressive bot defenses.
curl -X POST https://api.ollagraph.com/v1/actors/zillow \
-H "Authorization: Bearer $OLLAGRAPH_API_KEY" \
-H "Content-Type: application/json" \
-d '{"url": "https://example.com"}'Response fields
| Field | Type | Example |
|---|---|---|
address |
string | 20 W 34th St, New York, NY 10001 |
price |
number | 1250000 |
zestimate |
number | 1310000 |
bedrooms |
number | 2 |
bathrooms |
number | 2.0 |
living_area_sqft |
number | 1450 |
year_built |
number | 1931 |
Sample response
{
"status": "success",
"url": "https://www.zillow.com/homedetails/...",
"time_ms": 1820,
"data": {
"address": "20 W 34th St",
"city": "New York", "state": "NY", "zipcode": "10001",
"price": 1250000,
"zestimate": 1310000,
"bedrooms": 2, "bathrooms": 2,
"living_area_sqft": 1450,
"year_built": 1931
}
}Proxy & reliability
Zillow runs an enterprise-grade bot defense. The actor detects the wall and returns a clear error when blocked — enable the residential-proxy option for production.
See the full pipeline in the step-by-step recipe. Part of the actor catalog — all behind one bearer token. Failed calls auto-refund.