Get Property Detail
curl --request GET \
--url https://scrapebadger.com/v1/zillow/property/{zpid} \
--header 'x-api-key: <api-key>'import requests
url = "https://scrapebadger.com/v1/zillow/property/{zpid}"
headers = {"x-api-key": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {'x-api-key': '<api-key>'}};
fetch('https://scrapebadger.com/v1/zillow/property/{zpid}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://scrapebadger.com/v1/zillow/property/{zpid}",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"x-api-key: <api-key>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://scrapebadger.com/v1/zillow/property/{zpid}"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("x-api-key", "<api-key>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://scrapebadger.com/v1/zillow/property/{zpid}")
.header("x-api-key", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://scrapebadger.com/v1/zillow/property/{zpid}")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["x-api-key"] = '<api-key>'
response = http.request(request)
puts response.read_body{
"property": {
"zpid": "<string>",
"id": "<string>",
"url": "<string>",
"home_status": "<string>",
"home_type": "<string>",
"property_type": "<string>",
"listing_type": "<string>",
"posting_product_type": "<string>",
"listing_data_source": "<string>",
"mls_id": "<string>",
"parcel_id": "<string>",
"county_fips": "<string>",
"provider_listing_id": "<string>",
"broker_id": "<string>",
"contingent_listing_type": "<string>",
"listing_sub_type": {
"is_fsba": true,
"is_fsbo": true,
"is_foreclosure": true,
"is_bank_owned": true,
"is_for_auction": true,
"is_coming_soon": true,
"is_new_home": true,
"is_pending": true
},
"price": 123,
"currency": "<string>",
"list_price_low": 123,
"monthly_hoa_fee": 123,
"property_tax_rate": 123,
"annual_homeowners_insurance": 123,
"last_sold_price": 123,
"date_sold_utc": 123,
"date_sold_at": "<string>",
"price_change": 123,
"price_change_date_utc": 123,
"price_change_date_at": "<string>",
"zestimate": 123,
"rent_zestimate": 123,
"zestimate_low_percent": "<string>",
"zestimate_high_percent": "<string>",
"rent_zestimate_low_percent": "<string>",
"rent_zestimate_high_percent": "<string>",
"zestimate_30_days_ago": 123,
"rent_zestimate_30_days_ago": 123,
"tax_assessed_value": 123,
"zestimate_history": [
{
"date": "<string>",
"date_utc": 123,
"date_at": "<string>",
"value": 123
}
],
"bedrooms": 123,
"bathrooms": 123,
"living_area": 123,
"living_area_units": "<string>",
"lot_size": 123,
"lot_area_value": 123,
"lot_area_units": "<string>",
"year_built": 123,
"move_in_ready": true,
"move_in_completion_date": "<string>",
"latitude": 123,
"longitude": 123,
"street_address": "<string>",
"abbreviated_address": "<string>",
"city": "<string>",
"state": "<string>",
"zipcode": "<string>",
"county": "<string>",
"country": "<string>",
"time_zone": "<string>",
"neighborhood": "<string>",
"is_undisclosed_address": true,
"is_income_restricted": true,
"days_on_zillow": 123,
"time_on_zillow": "<string>",
"page_view_count": 123,
"favorite_count": 123,
"tour_view_count": 123,
"photo_count": 123,
"description": "<string>",
"what_i_love": "<string>",
"home_insights": [
"<string>"
],
"marketing_name": "<string>",
"brokerage_name": "<string>",
"is_showcase_listing": true,
"has_vr_model": true,
"has_3d_model": true,
"virtual_tour_url": "<string>",
"interactive_floor_plan_url": "<string>",
"street_view_image_url": "<string>",
"static_map_url": "<string>",
"new_construction_type": "<string>",
"builder_name": "<string>",
"promotion_headline": "<string>",
"promotion_description": "<string>",
"has_promotion": true,
"address": {
"street_address": "<string>",
"city": "<string>",
"state": "<string>",
"zipcode": "<string>",
"community": "<string>",
"subdivision": "<string>",
"neighborhood": "<string>"
},
"home_facts": {
"bathrooms_full": 123,
"bathrooms_half": 123,
"bathrooms_three_quarter": 123,
"bathrooms_one_quarter": 123,
"stories": 123,
"stories_decimal": 123,
"levels": "<string>",
"property_condition": "<string>",
"architectural_style": "<string>",
"structure_type": "<string>",
"building_name": "<string>",
"construction_materials": [
"<string>"
],
"foundation_details": [
"<string>"
],
"roof_type": "<string>",
"year_built_effective": 123,
"above_grade_finished_area": "<string>",
"below_grade_finished_area": "<string>",
"lot_size_dimensions": "<string>",
"main_level_bedrooms": 123,
"main_level_bathrooms": 123,
"basement": "<string>",
"has_basement": true,
"attic": "<string>",
"heating": [
"<string>"
],
"cooling": [
"<string>"
],
"appliances": [
"<string>"
],
"flooring": [
"<string>"
],
"utilities": [
"<string>"
],
"electric": [
"<string>"
],
"gas": [
"<string>"
],
"sewer": [
"<string>"
],
"water_source": [
"<string>"
],
"green_building_verification_type": [
"<string>"
],
"green_energy_efficient": [
"<string>"
],
"green_energy_generation": [
"<string>"
],
"green_sustainability": [
"<string>"
],
"green_water_conservation": [
"<string>"
],
"interior_features": [
"<string>"
],
"exterior_features": [
"<string>"
],
"lot_features": [
"<string>"
],
"community_features": [
"<string>"
],
"accessibility_features": [
"<string>"
],
"door_features": [
"<string>"
],
"window_features": [
"<string>"
],
"laundry_features": [
"<string>"
],
"patio_and_porch_features": [
"<string>"
],
"fencing": [
"<string>"
],
"other_structures": [
"<string>"
],
"view": [
"<string>"
],
"has_view": true,
"waterfront_features": [
"<string>"
],
"water_view": "<string>",
"water_body_name": "<string>",
"security_features": [
"<string>"
],
"parking_features": [
"<string>"
],
"parking_capacity": 123,
"garage_parking_capacity": 123,
"carport_parking_capacity": 123,
"covered_parking_capacity": 123,
"open_parking_capacity": 123,
"has_attached_garage": true,
"has_garage": true,
"has_carport": true,
"has_open_parking": true,
"pool_features": [
"<string>"
],
"has_private_pool": true,
"spa_features": [
"<string>"
],
"fireplaces": 123,
"fireplace_features": [
"<string>"
],
"has_fireplace": true,
"association_name": "<string>",
"association_name2": "<string>",
"association_fee": "<string>",
"association_fee2": "<string>",
"association_fee_includes": [
"<string>"
],
"association_amenities": [
"<string>"
],
"association_phone": "<string>",
"has_association": true,
"hoa_fee": "<string>",
"hoa_fee_total": "<string>",
"tax_annual_amount": 123,
"price_per_square_foot": 123,
"has_land_lease": true,
"land_lease_amount": "<string>",
"land_lease_expiration_date": "<string>",
"can_raise_horses": true,
"additional_parcels_description": "<string>",
"road_surface_type": [
"<string>"
],
"on_market_date": "<string>",
"cumulative_days_on_market": 123,
"offer_review_date": "<string>",
"number_of_units_in_community": 123,
"availability_date": "<string>",
"lease_term": "<string>",
"tenant_pays": [
"<string>"
],
"has_pets_allowed": true,
"pets_max_weight": 123,
"has_rent_control": true,
"elementary_school": "<string>",
"middle_school": "<string>",
"high_school": "<string>",
"elementary_school_district": "<string>",
"middle_school_district": "<string>",
"high_school_district": "<string>",
"parcel_number": "<string>",
"subdivision_name": "<string>",
"municipality": "<string>",
"city_region": "<string>",
"zoning": "<string>",
"zoning_description": "<string>",
"ownership": "<string>",
"ownership_type": "<string>",
"property_sub_type": [
"<string>"
],
"special_listing_conditions": "<string>",
"listing_terms": "<string>",
"inclusions": "<string>",
"exclusions": "<string>",
"is_new_construction": true,
"is_senior_community": true,
"has_home_warranty": true,
"furnished": true,
"development_status": "<string>",
"park_name": "<string>",
"at_a_glance_facts": [
{}
],
"rooms": [
{}
]
},
"agent": {
"agent_name": "<string>",
"agent_phone": "<string>",
"agent_email": "<string>",
"agent_license_number": "<string>",
"co_agent_name": "<string>",
"co_agent_number": "<string>",
"co_agent_license_number": "<string>",
"broker_name": "<string>",
"broker_phone": "<string>",
"buyer_agent_name": "<string>",
"buyer_brokerage_name": "<string>",
"mls_id": "<string>",
"mls_name": "<string>",
"mls_disclaimer": "<string>",
"listing_agreement": "<string>",
"listing_attribution_contact": "<string>",
"provider_logo": "<string>",
"true_status": "<string>",
"last_checked": "<string>",
"last_updated": "<string>",
"listing_agents": [
{}
],
"listing_offices": [
{}
]
},
"mortgage_rates": {
"fifteen_year_fixed": {
"rate": 123,
"rate_source": "<string>",
"last_updated_utc": 123,
"last_updated_at": "<string>"
},
"thirty_year_fixed": {
"rate": 123,
"rate_source": "<string>",
"last_updated_utc": 123,
"last_updated_at": "<string>"
},
"arm_5": {
"rate": 123,
"rate_source": "<string>",
"last_updated_utc": 123,
"last_updated_at": "<string>"
}
},
"price_history": [
{
"date": "<string>",
"date_utc": 123,
"date_at": "<string>",
"event": "<string>",
"price": 123,
"price_per_square_foot": 123,
"price_change_rate": 123,
"source": "<string>",
"buyer_agent": "<string>",
"seller_agent": "<string>",
"posting_is_rental": true
}
],
"tax_history": [
{
"year_utc": 123,
"year_at": "<string>",
"value": 123,
"value_increase_rate": 123,
"tax_paid": 123,
"tax_increase_rate": 123
}
],
"schools": [
{
"name": "<string>",
"rating": 123,
"grades": "<string>",
"level": "<string>",
"type": "<string>",
"distance": 123,
"link": "<string>",
"student_count": 123,
"assigned": true
}
],
"photos": [
{
"url": "<string>",
"caption": "<string>",
"subject_type": "<string>",
"sources": [
{}
]
}
],
"open_house_schedule": [
{
"start_utc": 123,
"start_at": "<string>",
"end_utc": 123,
"end_at": "<string>",
"note": "<string>"
}
],
"nearby_cities": [
{
"name": "<string>",
"region_type": "<string>",
"url": "<string>"
}
],
"nearby_neighborhoods": [
{
"name": "<string>",
"region_type": "<string>",
"url": "<string>"
}
],
"nearby_zipcodes": [
{
"name": "<string>",
"region_type": "<string>",
"url": "<string>"
}
],
"nearby_homes": [
{
"position": 123,
"zpid": "<string>",
"id": "<string>",
"detail_url": "<string>",
"home_type": "<string>",
"home_status": "<string>",
"status_text": "<string>",
"status_type": "<string>",
"marketing_status": "<string>",
"contingent_listing_type": "<string>",
"price": 123,
"price_raw": "<string>",
"currency": "<string>",
"price_change": 123,
"date_price_changed_utc": 123,
"date_price_changed_at": "<string>",
"price_reduction": "<string>",
"flex_field_text": "<string>",
"zestimate": 123,
"rent_zestimate": 123,
"tax_assessed_value": 123,
"beds": 123,
"baths": 123,
"living_area": 123,
"lot_area_value": 123,
"lot_area_unit": "<string>",
"address": "<string>",
"street_address": "<string>",
"unit": "<string>",
"city": "<string>",
"state": "<string>",
"zipcode": "<string>",
"country": "<string>",
"is_undisclosed_address": true,
"latitude": 123,
"longitude": 123,
"broker_name": "<string>",
"provider_listing_id": "<string>",
"days_on_zillow": 123,
"is_zillow_owned": true,
"is_featured": true,
"is_showcase": true,
"is_fsba": true,
"is_new_construction": true,
"is_premier_builder": true,
"is_preforeclosure_auction": true,
"is_non_owner_occupied": true,
"img_src": "<string>",
"has_image": true,
"has_video": true,
"has_3d_model": true,
"has_open_house": true,
"open_house_start": "<string>",
"open_house_end": "<string>",
"photos": [
"<string>"
]
}
],
"scraped_utc": 123,
"scraped_at": "<string>"
}
}Properties
Get Property Detail
Maximal detail for a single Zillow property — home facts, price/tax/Zestimate history, schools, agent, and mortgage rates.
GET
/
v1
/
zillow
/
property
/
{zpid}
Get Property Detail
curl --request GET \
--url https://scrapebadger.com/v1/zillow/property/{zpid} \
--header 'x-api-key: <api-key>'import requests
url = "https://scrapebadger.com/v1/zillow/property/{zpid}"
headers = {"x-api-key": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {'x-api-key': '<api-key>'}};
fetch('https://scrapebadger.com/v1/zillow/property/{zpid}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://scrapebadger.com/v1/zillow/property/{zpid}",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"x-api-key: <api-key>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://scrapebadger.com/v1/zillow/property/{zpid}"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("x-api-key", "<api-key>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://scrapebadger.com/v1/zillow/property/{zpid}")
.header("x-api-key", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://scrapebadger.com/v1/zillow/property/{zpid}")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["x-api-key"] = '<api-key>'
response = http.request(request)
puts response.read_body{
"property": {
"zpid": "<string>",
"id": "<string>",
"url": "<string>",
"home_status": "<string>",
"home_type": "<string>",
"property_type": "<string>",
"listing_type": "<string>",
"posting_product_type": "<string>",
"listing_data_source": "<string>",
"mls_id": "<string>",
"parcel_id": "<string>",
"county_fips": "<string>",
"provider_listing_id": "<string>",
"broker_id": "<string>",
"contingent_listing_type": "<string>",
"listing_sub_type": {
"is_fsba": true,
"is_fsbo": true,
"is_foreclosure": true,
"is_bank_owned": true,
"is_for_auction": true,
"is_coming_soon": true,
"is_new_home": true,
"is_pending": true
},
"price": 123,
"currency": "<string>",
"list_price_low": 123,
"monthly_hoa_fee": 123,
"property_tax_rate": 123,
"annual_homeowners_insurance": 123,
"last_sold_price": 123,
"date_sold_utc": 123,
"date_sold_at": "<string>",
"price_change": 123,
"price_change_date_utc": 123,
"price_change_date_at": "<string>",
"zestimate": 123,
"rent_zestimate": 123,
"zestimate_low_percent": "<string>",
"zestimate_high_percent": "<string>",
"rent_zestimate_low_percent": "<string>",
"rent_zestimate_high_percent": "<string>",
"zestimate_30_days_ago": 123,
"rent_zestimate_30_days_ago": 123,
"tax_assessed_value": 123,
"zestimate_history": [
{
"date": "<string>",
"date_utc": 123,
"date_at": "<string>",
"value": 123
}
],
"bedrooms": 123,
"bathrooms": 123,
"living_area": 123,
"living_area_units": "<string>",
"lot_size": 123,
"lot_area_value": 123,
"lot_area_units": "<string>",
"year_built": 123,
"move_in_ready": true,
"move_in_completion_date": "<string>",
"latitude": 123,
"longitude": 123,
"street_address": "<string>",
"abbreviated_address": "<string>",
"city": "<string>",
"state": "<string>",
"zipcode": "<string>",
"county": "<string>",
"country": "<string>",
"time_zone": "<string>",
"neighborhood": "<string>",
"is_undisclosed_address": true,
"is_income_restricted": true,
"days_on_zillow": 123,
"time_on_zillow": "<string>",
"page_view_count": 123,
"favorite_count": 123,
"tour_view_count": 123,
"photo_count": 123,
"description": "<string>",
"what_i_love": "<string>",
"home_insights": [
"<string>"
],
"marketing_name": "<string>",
"brokerage_name": "<string>",
"is_showcase_listing": true,
"has_vr_model": true,
"has_3d_model": true,
"virtual_tour_url": "<string>",
"interactive_floor_plan_url": "<string>",
"street_view_image_url": "<string>",
"static_map_url": "<string>",
"new_construction_type": "<string>",
"builder_name": "<string>",
"promotion_headline": "<string>",
"promotion_description": "<string>",
"has_promotion": true,
"address": {
"street_address": "<string>",
"city": "<string>",
"state": "<string>",
"zipcode": "<string>",
"community": "<string>",
"subdivision": "<string>",
"neighborhood": "<string>"
},
"home_facts": {
"bathrooms_full": 123,
"bathrooms_half": 123,
"bathrooms_three_quarter": 123,
"bathrooms_one_quarter": 123,
"stories": 123,
"stories_decimal": 123,
"levels": "<string>",
"property_condition": "<string>",
"architectural_style": "<string>",
"structure_type": "<string>",
"building_name": "<string>",
"construction_materials": [
"<string>"
],
"foundation_details": [
"<string>"
],
"roof_type": "<string>",
"year_built_effective": 123,
"above_grade_finished_area": "<string>",
"below_grade_finished_area": "<string>",
"lot_size_dimensions": "<string>",
"main_level_bedrooms": 123,
"main_level_bathrooms": 123,
"basement": "<string>",
"has_basement": true,
"attic": "<string>",
"heating": [
"<string>"
],
"cooling": [
"<string>"
],
"appliances": [
"<string>"
],
"flooring": [
"<string>"
],
"utilities": [
"<string>"
],
"electric": [
"<string>"
],
"gas": [
"<string>"
],
"sewer": [
"<string>"
],
"water_source": [
"<string>"
],
"green_building_verification_type": [
"<string>"
],
"green_energy_efficient": [
"<string>"
],
"green_energy_generation": [
"<string>"
],
"green_sustainability": [
"<string>"
],
"green_water_conservation": [
"<string>"
],
"interior_features": [
"<string>"
],
"exterior_features": [
"<string>"
],
"lot_features": [
"<string>"
],
"community_features": [
"<string>"
],
"accessibility_features": [
"<string>"
],
"door_features": [
"<string>"
],
"window_features": [
"<string>"
],
"laundry_features": [
"<string>"
],
"patio_and_porch_features": [
"<string>"
],
"fencing": [
"<string>"
],
"other_structures": [
"<string>"
],
"view": [
"<string>"
],
"has_view": true,
"waterfront_features": [
"<string>"
],
"water_view": "<string>",
"water_body_name": "<string>",
"security_features": [
"<string>"
],
"parking_features": [
"<string>"
],
"parking_capacity": 123,
"garage_parking_capacity": 123,
"carport_parking_capacity": 123,
"covered_parking_capacity": 123,
"open_parking_capacity": 123,
"has_attached_garage": true,
"has_garage": true,
"has_carport": true,
"has_open_parking": true,
"pool_features": [
"<string>"
],
"has_private_pool": true,
"spa_features": [
"<string>"
],
"fireplaces": 123,
"fireplace_features": [
"<string>"
],
"has_fireplace": true,
"association_name": "<string>",
"association_name2": "<string>",
"association_fee": "<string>",
"association_fee2": "<string>",
"association_fee_includes": [
"<string>"
],
"association_amenities": [
"<string>"
],
"association_phone": "<string>",
"has_association": true,
"hoa_fee": "<string>",
"hoa_fee_total": "<string>",
"tax_annual_amount": 123,
"price_per_square_foot": 123,
"has_land_lease": true,
"land_lease_amount": "<string>",
"land_lease_expiration_date": "<string>",
"can_raise_horses": true,
"additional_parcels_description": "<string>",
"road_surface_type": [
"<string>"
],
"on_market_date": "<string>",
"cumulative_days_on_market": 123,
"offer_review_date": "<string>",
"number_of_units_in_community": 123,
"availability_date": "<string>",
"lease_term": "<string>",
"tenant_pays": [
"<string>"
],
"has_pets_allowed": true,
"pets_max_weight": 123,
"has_rent_control": true,
"elementary_school": "<string>",
"middle_school": "<string>",
"high_school": "<string>",
"elementary_school_district": "<string>",
"middle_school_district": "<string>",
"high_school_district": "<string>",
"parcel_number": "<string>",
"subdivision_name": "<string>",
"municipality": "<string>",
"city_region": "<string>",
"zoning": "<string>",
"zoning_description": "<string>",
"ownership": "<string>",
"ownership_type": "<string>",
"property_sub_type": [
"<string>"
],
"special_listing_conditions": "<string>",
"listing_terms": "<string>",
"inclusions": "<string>",
"exclusions": "<string>",
"is_new_construction": true,
"is_senior_community": true,
"has_home_warranty": true,
"furnished": true,
"development_status": "<string>",
"park_name": "<string>",
"at_a_glance_facts": [
{}
],
"rooms": [
{}
]
},
"agent": {
"agent_name": "<string>",
"agent_phone": "<string>",
"agent_email": "<string>",
"agent_license_number": "<string>",
"co_agent_name": "<string>",
"co_agent_number": "<string>",
"co_agent_license_number": "<string>",
"broker_name": "<string>",
"broker_phone": "<string>",
"buyer_agent_name": "<string>",
"buyer_brokerage_name": "<string>",
"mls_id": "<string>",
"mls_name": "<string>",
"mls_disclaimer": "<string>",
"listing_agreement": "<string>",
"listing_attribution_contact": "<string>",
"provider_logo": "<string>",
"true_status": "<string>",
"last_checked": "<string>",
"last_updated": "<string>",
"listing_agents": [
{}
],
"listing_offices": [
{}
]
},
"mortgage_rates": {
"fifteen_year_fixed": {
"rate": 123,
"rate_source": "<string>",
"last_updated_utc": 123,
"last_updated_at": "<string>"
},
"thirty_year_fixed": {
"rate": 123,
"rate_source": "<string>",
"last_updated_utc": 123,
"last_updated_at": "<string>"
},
"arm_5": {
"rate": 123,
"rate_source": "<string>",
"last_updated_utc": 123,
"last_updated_at": "<string>"
}
},
"price_history": [
{
"date": "<string>",
"date_utc": 123,
"date_at": "<string>",
"event": "<string>",
"price": 123,
"price_per_square_foot": 123,
"price_change_rate": 123,
"source": "<string>",
"buyer_agent": "<string>",
"seller_agent": "<string>",
"posting_is_rental": true
}
],
"tax_history": [
{
"year_utc": 123,
"year_at": "<string>",
"value": 123,
"value_increase_rate": 123,
"tax_paid": 123,
"tax_increase_rate": 123
}
],
"schools": [
{
"name": "<string>",
"rating": 123,
"grades": "<string>",
"level": "<string>",
"type": "<string>",
"distance": 123,
"link": "<string>",
"student_count": 123,
"assigned": true
}
],
"photos": [
{
"url": "<string>",
"caption": "<string>",
"subject_type": "<string>",
"sources": [
{}
]
}
],
"open_house_schedule": [
{
"start_utc": 123,
"start_at": "<string>",
"end_utc": 123,
"end_at": "<string>",
"note": "<string>"
}
],
"nearby_cities": [
{
"name": "<string>",
"region_type": "<string>",
"url": "<string>"
}
],
"nearby_neighborhoods": [
{
"name": "<string>",
"region_type": "<string>",
"url": "<string>"
}
],
"nearby_zipcodes": [
{
"name": "<string>",
"region_type": "<string>",
"url": "<string>"
}
],
"nearby_homes": [
{
"position": 123,
"zpid": "<string>",
"id": "<string>",
"detail_url": "<string>",
"home_type": "<string>",
"home_status": "<string>",
"status_text": "<string>",
"status_type": "<string>",
"marketing_status": "<string>",
"contingent_listing_type": "<string>",
"price": 123,
"price_raw": "<string>",
"currency": "<string>",
"price_change": 123,
"date_price_changed_utc": 123,
"date_price_changed_at": "<string>",
"price_reduction": "<string>",
"flex_field_text": "<string>",
"zestimate": 123,
"rent_zestimate": 123,
"tax_assessed_value": 123,
"beds": 123,
"baths": 123,
"living_area": 123,
"lot_area_value": 123,
"lot_area_unit": "<string>",
"address": "<string>",
"street_address": "<string>",
"unit": "<string>",
"city": "<string>",
"state": "<string>",
"zipcode": "<string>",
"country": "<string>",
"is_undisclosed_address": true,
"latitude": 123,
"longitude": 123,
"broker_name": "<string>",
"provider_listing_id": "<string>",
"days_on_zillow": 123,
"is_zillow_owned": true,
"is_featured": true,
"is_showcase": true,
"is_fsba": true,
"is_new_construction": true,
"is_premier_builder": true,
"is_preforeclosure_auction": true,
"is_non_owner_occupied": true,
"img_src": "<string>",
"has_image": true,
"has_video": true,
"has_3d_model": true,
"has_open_house": true,
"open_house_start": "<string>",
"open_house_end": "<string>",
"photos": [
"<string>"
]
}
],
"scraped_utc": 123,
"scraped_at": "<string>"
}
}Path Parameters
string
required
The Zillow property id (
zpid). You can find it in search results (zpid) or extract it from a /homedetails/... URL (the NNNNN_zpid segment).You can also fetch a property by full URL:
GET /v1/zillow/property?url=<Zillow /homedetails/... URL>.Response
The response wraps a singleProperty object under a property key. It carries ~99 top-level fields plus the nested blocks below.
object
Show Property object
Show Property object
string
Zillow property id.
string
Internal id (nullable).
string
Full listing URL (nullable).
string
Home status, e.g.
FOR_SALE, SOLD, PENDING (nullable).string
Home type, e.g.
SINGLE_FAMILY, CONDO (nullable).string
Property type (nullable).
string
Listing type (nullable).
string
Posting product type (nullable).
string
Listing data source (nullable).
string
MLS number (nullable).
string
Parcel id (nullable).
string
County FIPS code (nullable).
string
Provider listing id (nullable).
string
Broker id (nullable).
string
Contingency type (nullable).
object
Listing sub-type flags:
is_fsba, is_fsbo, is_foreclosure, is_bank_owned, is_for_auction, is_coming_soon, is_new_home, is_pending (nullable).integer
Current price in USD (nullable).
string
ISO 4217 currency code (nullable).
integer
Lower bound of a price range (nullable).
integer
Monthly HOA fee (nullable).
number
Property tax rate (nullable).
integer
Annual homeowners insurance estimate (nullable).
integer
Last sold price (nullable).
number
Last sold date as a Unix timestamp (nullable).
string
Last sold date as an ISO-8601 string (nullable).
integer
Signed price change amount (nullable).
number
Price-change date as a Unix timestamp (nullable).
string
Price-change date as an ISO-8601 string (nullable).
integer
Current Zestimate value (nullable).
integer
Current Rent Zestimate (nullable).
string
Zestimate low bound as a percent (nullable).
string
Zestimate high bound as a percent (nullable).
string
Rent Zestimate low bound as a percent (nullable).
string
Rent Zestimate high bound as a percent (nullable).
integer
Zestimate 30 days ago (nullable).
integer
Rent Zestimate 30 days ago (nullable).
integer
Tax-assessed value (nullable).
array
number
Number of bedrooms (nullable).
number
Number of bathrooms (nullable).
integer
Interior area (nullable).
string
Interior area units (nullable).
integer
Lot size (nullable).
number
Lot area value (nullable).
string
Lot area units (nullable).
integer
Year built (nullable).
boolean
Move-in-ready flag (nullable).
string
Move-in completion date (nullable).
number
Latitude (nullable).
number
Longitude (nullable).
string
Street line (nullable).
string
Abbreviated address (nullable).
string
City (nullable).
string
State code (nullable).
string
ZIP code (nullable).
string
County (nullable).
string
Country code (nullable).
string
IANA time zone (nullable).
string
Neighborhood (nullable).
boolean
Whether the address is withheld (nullable).
boolean
Income-restricted flag (nullable).
integer
Days on Zillow (nullable).
string
Human time-on-Zillow string (nullable).
integer
Page view count (nullable).
integer
Favorite/save count (nullable).
integer
Tour view count (nullable).
integer
Number of photos (nullable).
string
Listing description (nullable).
string
Owner’s “what I love” note (nullable).
array
Editorial insight tags (list of strings).
string
Marketing name (nullable).
string
Brokerage name (nullable).
boolean
Showcase listing flag (nullable).
boolean
VR model flag (nullable).
boolean
3D model flag (nullable).
string
Virtual tour URL (nullable).
string
Interactive floor plan URL (nullable).
string
Street View image URL (nullable).
string
Static map image URL (nullable).
string
New-construction type (nullable).
string
Builder name (nullable).
string
Promotion headline (nullable).
string
Promotion description (nullable).
boolean
Whether a promotion is present (nullable).
object
Structured address:
street_address, city, state, zipcode, community, subdivision, neighborhood (nullable).object
High-value subset of Zillow’s
resoFacts MLS block (~125 fields), grouped below (nullable).Show HomeFacts object
Show HomeFacts object
bathrooms_full, bathrooms_half, bathrooms_three_quarter, bathrooms_one_quarter.stories, stories_decimal, levels, property_condition, architectural_style, structure_type, building_name, construction_materials[], foundation_details[], roof_type, year_built_effective.above_grade_finished_area, below_grade_finished_area, lot_size_dimensions, main_level_bedrooms, main_level_bathrooms, basement, has_basement, attic.heating[], cooling[], appliances[], flooring[], utilities[], electric[], gas[], sewer[], water_source[].green_building_verification_type[], green_energy_efficient[], green_energy_generation[], green_sustainability[], green_water_conservation[].interior_features[], exterior_features[], lot_features[], community_features[], accessibility_features[], door_features[], window_features[], laundry_features[], patio_and_porch_features[], fencing[], other_structures[], view[], has_view, waterfront_features[], water_view, water_body_name, security_features[].parking_features[], parking_capacity, garage_parking_capacity, carport_parking_capacity, covered_parking_capacity, open_parking_capacity, has_attached_garage, has_garage, has_carport, has_open_parking.pool_features[], has_private_pool, spa_features[], fireplaces, fireplace_features[], has_fireplace.association_name, association_name2, association_fee, association_fee2, association_fee_includes[], association_amenities[], association_phone, has_association, hoa_fee, hoa_fee_total, tax_annual_amount, price_per_square_foot.has_land_lease, land_lease_amount, land_lease_expiration_date, can_raise_horses, additional_parcels_description, road_surface_type[].on_market_date, cumulative_days_on_market, offer_review_date.number_of_units_in_community, availability_date, lease_term, tenant_pays[], has_pets_allowed, pets_max_weight, has_rent_control.elementary_school, middle_school, high_school, elementary_school_district, middle_school_district, high_school_district.parcel_number, subdivision_name, municipality, city_region, zoning, zoning_description, ownership, ownership_type, property_sub_type[], special_listing_conditions, listing_terms, inclusions, exclusions.is_new_construction, is_senior_community, has_home_warranty, furnished, development_status, park_name.at_a_glance_facts[], rooms[] — label/value pairs Zillow ships verbatim.object
Listing-agent / broker attribution (from
attributionInfo).Show Agent attribution object
Show Agent attribution object
string
Listing agent name (nullable).
string
Listing agent phone (nullable).
string
Listing agent email (nullable).
string
Listing agent license number (nullable).
string
Co-agent name (nullable).
string
Co-agent phone (nullable).
string
Co-agent license number (nullable).
string
Broker name (nullable).
string
Broker phone (nullable).
string
Buyer agent name (nullable).
string
Buyer brokerage name (nullable).
string
MLS id (nullable).
string
MLS name (nullable).
string
MLS disclaimer text (nullable).
string
Listing agreement type (nullable).
string
Attribution contact (nullable).
string
Provider logo URL (nullable).
string
True listing status (nullable).
string
Last-checked timestamp (nullable).
string
Last-updated timestamp (nullable).
array
Raw listing-agent records.
array
Raw listing-office records.
object
Current mortgage rates:
fifteen_year_fixed, thirty_year_fixed, arm_5, each { rate, rate_source, last_updated_utc, last_updated_at } (nullable).array
Price / listing events over time.
Show Price event object
Show Price event object
string
Raw date label (nullable).
number
Event date as a Unix timestamp (nullable).
string
Event date as an ISO-8601 string (nullable).
string
Event type, e.g.
Listed for sale, Price change, Sold (nullable).integer
Price at the event (nullable).
integer
Price per sqft at the event (nullable).
number
Price change rate (nullable).
string
Event source (nullable).
string
Buyer agent (nullable).
string
Seller agent (nullable).
boolean
Whether the event was a rental posting (nullable).
array
array
Nearby schools.
Show School object
Show School object
string
School name (nullable).
integer
GreatSchools rating (nullable).
string
Grade range, e.g.
K-5 (nullable).string
Level, e.g.
Elementary, Middle, High, Primary (nullable).string
Type, e.g.
Public, Private, Charter (nullable).number
Distance from the property in miles (nullable).
string
School profile URL (nullable).
integer
Student count (nullable).
boolean
Whether the school is assigned to this home (nullable).
array
Photo objects:
url, caption, subject_type, and responsive sources[] ({ url, width, format }).array
Open-house objects:
start_utc, start_at, end_utc, end_at, note.array
Linked nearby cities:
name, region_type, url.array
Linked nearby neighborhoods:
name, region_type, url.array
Linked nearby ZIP codes:
name, region_type, url.array
Nearby homes (usually empty in server-rendered JSON; same shape as a search
Listing).number
Scrape time as a Unix timestamp (nullable).
string
Scrape time as an ISO-8601 string (nullable).
Example Response
{
"property": {
"zpid": "29499726",
"url": "https://www.zillow.com/homedetails/123-Main-St-Austin-TX-78701/29499726_zpid/",
"home_status": "FOR_SALE",
"home_type": "SINGLE_FAMILY",
"price": 460000,
"currency": "USD",
"monthly_hoa_fee": 45,
"zestimate": 468000,
"rent_zestimate": 2600,
"tax_assessed_value": 420000,
"bedrooms": 3,
"bathrooms": 2,
"living_area": 1800,
"lot_size": 6500,
"year_built": 2015,
"street_address": "123 Main St",
"city": "Austin",
"state": "TX",
"zipcode": "78701",
"county": "Travis",
"latitude": 30.2672,
"longitude": -97.7431,
"photo_count": 32,
"description": "Charming single-family home in the heart of downtown...",
"home_insights": ["Hardwood floors", "Updated kitchen"],
"home_facts": {
"bathrooms_full": 2,
"stories": 2,
"architectural_style": "Traditional",
"heating": ["Central"],
"cooling": ["Central Air"],
"appliances": ["Dishwasher", "Refrigerator"],
"has_garage": true,
"parcel_number": "0203040506",
"tax_annual_amount": 6200
},
"agent": {
"agent_name": "Jane Doe",
"agent_phone": "512-555-0100",
"broker_name": "Downtown Realty Group",
"mls_id": "ACT1234567",
"mls_name": "ACTRIS"
},
"mortgage_rates": {
"thirty_year_fixed": { "rate": 6.8, "rate_source": "Zillow" }
},
"price_history": [
{ "date_at": "2026-06-01T00:00:00Z", "event": "Listed for sale", "price": 460000, "price_per_square_foot": 256 }
],
"tax_history": [
{ "year_at": "2024-01-01T00:00:00Z", "value": 420000, "tax_paid": 6200 }
],
"zestimate_history": [
{ "date_at": "2026-05-01T00:00:00Z", "value": 465000 }
],
"schools": [
{ "name": "Austin Elementary", "rating": 8, "grades": "K-5", "level": "Elementary", "type": "Public", "distance": 0.4, "assigned": true }
],
"photos": [
{ "url": "https://photos.zillowstatic.com/fp/abc-p_f.jpg", "caption": "Front", "sources": [{ "url": "https://photos.zillowstatic.com/fp/abc-p_e.webp", "width": 768, "format": "webp" }] }
],
"scraped_at": "2026-07-07T12:00:00Z"
}
}
Each property-detail request costs 5 credits. Failed requests are not charged.
⌘I

