The Zillow Scraper API allows you to extract detailed property information, search results, and agent details directly from Zillow. This API is ideal for integrating real estate data into your applications for analysis, reporting, or decision-making.

With the Zillow Property Scraper, you can access detailed property data such as:

  • Full address details, including city, state, and ZIP code.
  • Agent and agency information, such as name and contact details.
  • Property features, including:
    • Number of bedrooms and bathrooms.
    • Living area size and lot size.
    • Year built and property type.
  • Listing details, such as:
    • Listing date, number of days listed, views, and favorites.
    • Status (e.g., For Sale, Sold).
    • Price, including currency and tax rate.
  • Property description and images.
  • Geographic coordinates (latitude and longitude).
  • A direct URL to the property listing.

Supported Query Parameters

PARAMETERTYPEDEFAULTDESCRIPTION
zpid requiredstringThe Zillow Property ID (ZPID) for the property (must be a valid 7-10 digit number). Example: 1234567890.
urlstring <uri>The URL where the desired property data must be retrieved from. Example: https://www.zillow.com/homedetails/1234567890_zpid.
outputstringjsonThe format of the response. Supported values: json, csv.

How to Setup

Request the property endpoint using the ZPID of the desired product:

https://realstate.api.zenrows.com/v1/targets/zillow/properties/{zpid}?apikey=YOUR_ZENROWS_API_KEY

Code Exampless

Replace {zpid} with the actual property ZPID code.

Response Example

{
    "address": "6236 NW 176th Ter",
    "agency_name": "Ruano Brokers Incorporated",
    "agent_name": "John Doe",
    "agent_phone": "305-298-8996",
    "bathrooms": "3",
    "bedrooms": "3",
    "city": "Hialeah",
    "country": "USA",
    "description": "This is a 2023 square foot, 3 bedroom, 2.0 bathroom home. This home...",
    "image": [
        "https:\/\/photos.zillowstatic.com\/fp\/e24592d7e4f3e42cf5c015058d8afa3f-p_f.jpg"
    ],
    "latitude": "25.934856",
    "listing_date": "2024-07-30",
    "listing_days": "111",
    "listing_favorites": "13",
    "listing_views": "57",
    "living_area_size": "2100",
    "longitude": "-80.3032",
    "lot_size": "5511",
    "price": "600000",
    "price_currency": "USD",
    "property_id": "44083264",
    "property_type": "SINGLE_FAMILY",
    "state": "FL",
    "status": "FOR_SALE",
    "tax_rate": "0.8",
    "url": "https:\/\/www.zillow.com\/homedetails\/6236-NW-176th-Ter-Hialeah-FL-33015\/44083264_zpid\/",
    "year_built": "1986",
    "zipcode": "33015"
}

Troubleshooting and FAQs