🏠
Real estate
Zillow property
The Zillow actor extracts the embedded data payload from a property detail page, avoiding brittle DOM scraping. The result is consistent across home types — single-family, condo, multi-family, building pages. When Zillow returns its anti-bot captcha wall, the actor detects it explicitly and asks the caller to supply a residential proxy.
POST /v1/actors/zillow Fields returned
| 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
}
} Production guidance
Zillow runs an enterprise-grade bot defense. The actor detects the wall and returns a clear error when blocked. Supply a residential `proxy` for production.
Quickstart
curl -X POST https://api.datasonar.dev/v1/actors/zillow \
-H "Authorization: Bearer osk_..." \
-H "Content-Type: application/json" \
-d '{"url": "https://www.zillow.com/homedetails/..."}'Zillow property questions
How accurate is the Zillow property actor? ▾
For pages that return a normal response, the actor extracts every documented field reliably. For pages that hit anti-bot defenses, the actor returns a clear error rather than guessing at incomplete data — your pipeline can decide whether to retry with a residential proxy.
How much does each zillow property call cost? ▾
Every actor call counts as a single request against your monthly quota — same as every other endpoint. There are no per-vertical surcharges.
What happens if Zillow changes their page structure? ▾
We monitor structural changes on every site we support and update the actor before customer pipelines notice. Subscribe to the changelog to be notified when a vertical actor gets a new field or fix.
Can I request a custom field? ▾
Yes. Business and Enterprise customers can request additional fields on any actor. We typically ship within one to two weeks of a clear specification.
Try the zillow property actor free.
1,000 requests every month, every endpoint, no credit card.