Real Estate

Zillow API

zillow.com

Zillow - home listings, property details, Zestimates, and location lookups.

Actions
4
Category
Real Estate
Login
Not required
Output
JSON

Call the Zillow API

Submit a task, then poll the job until it settles. This example runs zl_location_search.

curl -X POST https://api.anakin.io/v1/wire/task \
  -H "X-API-Key: $ANAKIN_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "action_id": "zl_location_search",
    "params": {
      "query": "Los Angeles"
    }
  }'

4 actions on zillow.com

Read

  • Location Search

    zl_location_searchread1 credit / call

    Returns Zillow region IDs for a city, ZIP code, address, or neighborhood.

    query
    string · required
  • Property Details

    zl_property_detailsread1 credit / call

    Returns full property details including address, price, Zestimate, beds, baths, area, and tax rate.

    zpid
    string
    property_url
    string
  • Property Zestimate

    zl_zestimateread2 credits / call

    Returns the Zillow Zestimate and rent Zestimate with estimated value range and basic home info.

    zpid
    string
    property_url
    string
  • Search Listings

    zl_search_listingsread1 credit / call

    Returns homes for sale or rent by region with addresses, prices, beds, baths, area, and details.

    region_id
    string · required
    region_type
    integer
    status
    string
    min_price
    integer
    max_price
    integer
    beds
    integer
    baths
    integer

Zillow API questions

Is there an API for Zillow?
Zillow does not offer a public data API for this, but Anakin Wire provides 4 maintained endpoints for zillow.com. You call Anakin's REST API with an action ID and parameters and get structured JSON back; Anakin handles the browser, proxies, anti-bot, and parsing.
How do I scrape Zillow data?
POST to https://api.anakin.io/v1/wire/task with your API key, the action ID, and its parameters, then poll GET /v1/wire/jobs/{id} until the job settles. There is nothing to install and no scraper to maintain — when zillow.com changes its markup, Anakin updates the action.
Do I need a Zillow account?
No. Every Zillow action listed here runs anonymously — no account and no credentials required.
What does the Zillow API cost?
Usage-based credits, charged per call and refunded automatically when a job fails. New accounts start with 300 free credits and no card. See anakin.io/pricing for the current rates.

More Real Estate APIs

All Real Estate sites