Zillow API

GET   /api/v1/search?engine=zillow

The Zillow API returns real estate property listings including homes for sale, rentals, and recently sold properties. Search by location and filter by price, beds, baths, property type, and dozens of features.

API Parameters

Search Query

  • Name
    q
    Required
    Required
    Description

    Location to search for properties. Accepts city/state (e.g., New York, NY), ZIP code (e.g., 10001), or neighborhood name.

Listing Type

  • Name
    listing_status
    Required
    Optional
    Description

    Type of listing to search. Supported values are:

    • for_sale - Active listings for sale.
    • for_rent - Rental listings.
    • sold - Recently sold properties.

  • Name
    home_type
    Required
    Optional
    Description

    Comma-separated list of property types to include. Supported values are: house, condo, townhouse, multi_family, apartment, land, manufactured. Example: house,condo.

Pricing

  • Name
    price_min
    Required
    Optional
    Description

    Minimum listing price for sale and sold listings.

  • Name
    price_max
    Required
    Optional
    Description

    Maximum listing price for sale and sold listings.

  • Name
    rent_min
    Required
    Optional
    Description

    Minimum monthly rent for rental listings.

  • Name
    rent_max
    Required
    Optional
    Description

    Maximum monthly rent for rental listings.

Property Details

  • Name
    beds_min
    Required
    Optional
    Description

    Minimum number of bedrooms. Values from 1 to 5.

  • Name
    baths_min
    Required
    Optional
    Description

    Minimum number of bathrooms. Values from 1 to 4.

  • Name
    sqft_min
    Required
    Optional
    Description

    Minimum living area in square feet.

  • Name
    sqft_max
    Required
    Optional
    Description

    Maximum living area in square feet.

  • Name
    lot_size_min
    Required
    Optional
    Description

    Minimum lot size in square feet.

  • Name
    lot_size_max
    Required
    Optional
    Description

    Maximum lot size in square feet.

  • Name
    year_built_min
    Required
    Optional
    Description

    Minimum year built.

  • Name
    year_built_max
    Required
    Optional
    Description

    Maximum year built.

  • Name
    parking_spots
    Required
    Optional
    Description

    Minimum number of parking spots.

  • Name
    keywords
    Required
    Optional
    Description

    Keyword search within listings (e.g., pool, garage).

Features

  • Name
    has_pool
    Required
    Optional
    Description

    Filter for properties with a pool.

  • Name
    has_garage
    Required
    Optional
    Description

    Filter for properties with a garage.

  • Name
    has_ac
    Required
    Optional
    Description

    Filter for properties with air conditioning.

  • Name
    has_basement
    Required
    Optional
    Description

    Filter for properties with a basement.

  • Name
    is_waterfront
    Required
    Optional
    Description

    Filter for waterfront properties.

  • Name
    is_single_story
    Required
    Optional
    Description

    Filter for single-story properties.

  • Name
    is_3d_home
    Required
    Optional
    Description

    Filter for properties with 3D tours.

  • Name
    is_open_house
    Required
    Optional
    Description

    Filter for properties with upcoming open houses.

  • Name
    is_pending
    Required
    Optional
    Description

    Include pending and under contract listings.

  • Name
    is_new_construction
    Required
    Optional
    Description

    Filter for new construction properties.

  • Name
    is_coming_soon
    Required
    Optional
    Description

    Include coming soon listings.

Sorting

  • Name
    sort_by
    Required
    Optional
    Description

    Sort order for results. Supported values are: relevance, newest, price_asc, price_desc, payment_asc, payment_desc, beds, baths, sqft, lot_size, zestimate_desc, zestimate_asc.

  • Name
    days_on_zillow
    Required
    Optional
    Description

    Filter by time on Zillow. Supported values are: 1, 7, 14, 30, 90, 6m, 12m, 24m, 36m.

Pagination

  • Name
    page
    Required
    Optional
    Description

    Page number for pagination. Starts at 1, maximum is 24.

Engine

  • Name
    engine
    Required
    Required
    Description

    Set to zillow to use the Zillow API.

API Key

  • Name
    api_key
    Required
    Required
    Description

    Your SearchAPI key. Alternatively, you can use the Authorization header.

Zero Data Retention

  • Name
    zero_retention
    Enterprise Only
    Enterprise Only
    Required
    Optional
    Description

    Set this parameter to true to disable all logging and persistent storage. No request parameters, HTML, or JSON responses are stored or logged.

API Examples

Full Response

Full Response
GET
https://www.searchapi.io/api/v1/search?engine=zillow&q=New+York%2C+NY
Request
import requests

url = "https://www.searchapi.io/api/v1/search"
params = {
  "engine": "zillow",
  "q": "New York, NY"
}

response = requests.get(url, params=params)
print(response.text)
Response
{
  "search_metadata": {
    "id": "search_6QNVPZBKo24jcZklp8y471M9",
    "status": "Success",
    "created_at": "2026-04-01T08:30:50Z",
    "request_time_taken": 2.55,
    "parsing_time_taken": 0.05,
    "total_time_taken": 2.61,
    "request_url": "https://www.zillow.com/new-york-ny/",
    "html_url": "https://www.searchapi.io/api/v1/searches/search_6QNVPZBKo24jcZklp8y471M9.html",
    "json_url": "https://www.searchapi.io/api/v1/searches/search_6QNVPZBKo24jcZklp8y471M9"
  },
  "search_parameters": {
    "engine": "zillow",
    "q": "New York, NY"
  },
  "search_information": {
    "total_results": 20705,
    "title": "New York NY Real Estate - New York NY Homes For Sale | Zillow",
    "region": {
      "id": 6181,
      "type": 6,
      "name": "New York"
    }
  },
  "properties": [
    {
      "position": 1,
      "zpid": "459854825",
      "address": "37 W Ter, Staten Island, NY 10312",
      "street": "37 W Ter",
      "city": "Staten Island",
      "state": "NY",
      "zipcode": "10312",
      "price": "$998,000",
      "extracted_price": 998000.0,
      "rent_zestimate": 3294,
      "price_change": -102000,
      "price_reduction": "$102,000 (Feb 26)",
      "beds": 3,
      "baths": 2,
      "sqft": 1170,
      "lot_sqft": 4356.0,
      "lot_area_unit": "sqft",
      "home_type": "SINGLE_FAMILY",
      "home_status": "FOR_SALE",
      "status_text": "House for sale",
      "listing_sub_type": "FSBA",
      "days_on_zillow": 75,
      "date_price_changed": "2026-02-26T08:00:00Z",
      "latitude": 40.5335,
      "longitude": -74.19418,
      "thumbnail": "https://photos.zillowstatic.com/fp/1b1636f84a97e3def3d674f5011f0a88-p_e.jpg",
      "images": [
        "https://photos.zillowstatic.com/fp/1b1636f84a97e3def3d674f5011f0a88-p_e.jpg",
        "..."
      ],
      "has_3d_model": true,
      "link": "https://www.zillow.com/homedetails/37-W-Ter-Staten-Island-NY-10312/459854825_zpid/",
      "broker": "Listing by: Berkshire Hathaway HomeService Cangiano Estates",
      "currency": "USD",
      "country": "USA",
      "is_showcase": true,
      "listing_type": "For Sale by Agent",
      "tag": {
        "type": "showcase",
        "text": "Showcase"
      }
    },
    "..."
  ],
  "pagination": {
    "current": 1,
    "total_results": 20705,
    "total_pages": 24
  }
}