docs / zillow
Zillow
US homes with prices, history and estimates.
base /zillow/v110 endpoints
post
/zillow/v1/search2 creditssearch listings by location (status=for_sale|for_rent|sold)
| Parameter | Required |
|---|---|
| location | required |
| status | optional |
| max_pages | optional |
| fetch_all | optional |
| max_results | optional |
post
/zillow/v1/search_by_coordinates2 creditssearch by map bounds (+ bbox-tiling for the ~860 cap)
| Parameter | Required |
|---|---|
| map_bounds | required |
| status | optional |
| max_pages | optional |
| fetch_all | optional |
| max_results | optional |
post
/zillow/v1/search_by_url2 creditssearch/detail from a Zillow URL (routes property URL → detail)
| Parameter | Required |
|---|---|
| url | required |
post
/zillow/v1/property_detail3 creditsfull property: Zestimate(+history), price/tax history, schools, agent, photos, reso facts. Batch via zpids[].
| Parameter | Required |
|---|---|
| zpid | optional |
| zpids | optional |
| url | optional |
post
/zillow/v1/comps2 creditscomparable homes near a property (synthesized similar-listing search)
| Parameter | Required |
|---|---|
| zpid | optional |
| url | optional |
| radius_deg | optional |
| max_comps | optional |
post
/zillow/v1/sold2 creditsrecently-sold listings by location or map bounds
| Parameter | Required |
|---|---|
| location | optional |
| map_bounds | optional |
| max_pages | optional |
| fetch_all | optional |
post
/zillow/v1/agent1 creditlisting agent + broker attribution for a property (agentInfo)
| Parameter | Required |
|---|---|
| zpid | optional |
| url | optional |
post
/zillow/v1/agent_profile1 creditagent PORTFOLIO: info + their for-sale/sold listings + reviews
| Parameter | Required |
|---|---|
| username | optional |
| profile_url | optional |
| zuid | optional |
| url | optional |
post
/zillow/v1/agents_by_location1 creditagents serving a location + review summary (directory)
| Parameter | Required |
|---|---|
| location | required |
post
/zillow/v1/market_trends1 creditregion market metrics: ZHVI, median sale/list, inventory, days-to-pending
| Parameter | Required |
|---|---|
| location | required |
Example request · search
curl -X POST https://api.reefapi.com/zillow/v1/search \
-H "x-api-key: $REEF_KEY" \
-H "content-type: application/json" \
-d '{"location":"Austin, TX"}'Response shape
{
"ok": true,
"data": { /* the result */ },
"meta": {
"latency_ms": 240,
"record_count": 12,
"completeness_pct": 100
},
"error": null
}