The Zillow Property API allows users to retrieve detailed information about a specific property using its URL. It provides details such as property features, price, and agent contacts.

Get Your API Key

Sign in at hasdata.com, go to your account settings, and copy your API key. All requests must include your key in the x-api-key header.

Make Your First Request

curl --request GET \
  --url 'https://api.hasdata.com/scrape/zillow/property?url=https%3A%2F%2Fwww.zillow.com%2Fhomedetails%2F301-E-79th-St-APT-23S-New-York-NY-10075%2F31543731_zpid%2F' \
  --header 'Content-Type: application/json' \
  --header 'x-api-key: <your-api-key>'

API Parameters

ParameterDefault ValueRequiredDescription
urlhttps://www.zillow.com/homedetails/301-E-79th-St-APT-23S-New-York-NY-10075/31543731_zpid/YesThe URL of the property on Zillow. Must be a valid Zillow property URL.
extractAgentEmails-NoIf enabled, attempts to extract agent email addresses from the property details. Increases the cost of the request.