How to Call the Zillow Property API
Simple REST API endpoint. Just make a GET request with your API key and get structured data back.
GETCode Examples
cURL
curl -X GET 'https://api.parseium.com/v1/zillow-property?url=https://www.zillow.com/homedetails/123-Main-St/12345678_zpid/&api_key=YOUR_API_KEY'TypeScript
const response = await fetch(`https://api.parseium.com/v1/zillow-property?url=https://www.zillow.com/homedetails/123-Main-St/12345678_zpid/&api_key=${process.env.PARSEIUM_API_KEY}`, {
method: 'GET',
});
const data = await response.json();
console.log(data);Python
import requests
import os
api_key = os.environ['PARSEIUM_API_KEY']
response = requests.get(
f'https://api.parseium.com/v1/zillow-property?url=https://www.zillow.com/homedetails/123-Main-St/12345678_zpid/&api_key={api_key}'
)
data = response.json()
print(data)Query Parameters
Pass parameters in the URL query string:
url=https://www.zillow.com/homedetails/123-Main-St/12345678_zpid/Response Schema
The API returns structured JSON data with the following schema:
{
"success": {
"type": "boolean"
},
"zpid": {
"type": "number"
},
"address": {
"street": {
"type": "string"
},
"city": {
"type": "string"
},
"state": {
"type": "string"
},
"zipcode": {
"type": "string"
},
"full": {
"type": "string"
}
},
"price": {
"type": "number"
},
"zestimate": {
"type": "number"
},
"rentZestimate": {
"type": "number"
},
"bedrooms": {
"type": "number"
},
"bathrooms": {
"type": "number"
},
"livingArea": {
"type": "number"
},
"livingAreaUnits": {
"type": "string"
},
"lotSize": {
"type": "number"
},
"yearBuilt": {
"type": "number"
},
"homeType": {
"type": "string"
},
"homeStatus": {
"type": "string"
},
"description": {
"type": "string"
},
"latitude": {
"type": "number"
},
"longitude": {
"type": "number"
},
"photos": [
{
"type": "string"
}
],
"pricePerSqFt": {
"type": "number"
},
"dateSold": {
"type": "string"
},
"lastSoldPrice": {
"type": "number"
},
"taxAssessed": {
"type": "number"
},
"hoaFee": {
"type": "number"
},
"county": {
"type": "string"
},
"schools": [
{
"name": {
"type": "string"
},
"rating": {
"type": "number"
},
"level": {
"type": "string"
},
"distance": {
"type": "number"
},
"type": {
"type": "string"
}
}
],
"features": {
"heating": [
{
"type": "string"
}
],
"cooling": [
{
"type": "string"
}
],
"parking": [
{
"type": "string"
}
],
"appliances": [
{
"type": "string"
}
],
"interior": [
{
"type": "string"
}
],
"exterior": [
{
"type": "string"
}
],
"construction": [
{
"type": "string"
}
],
"roof": {
"type": "string"
},
"stories": {
"type": "number"
}
},
"attribution": {
"mlsId": {
"type": "string"
},
"mlsName": {
"type": "string"
},
"agentName": {
"type": "string"
},
"agentPhone": {
"type": "string"
},
"brokerName": {
"type": "string"
},
"brokerPhone": {
"type": "string"
}
}
}Need more details? Check out our full API documentation for authentication, error handling, rate limits, and advanced options.
Use Cases for Zillow Property
See how developers use this API in production applications.
Property Research
Get complete property profiles for buyer/seller research, investment analysis, or market comps.
Real Estate CRM
Auto-populate property data in CRMs, agent tools, or client portals by pasting Zillow URLs.
Investment Analysis
Pull zestimates, rent estimates, tax data, HOA fees, and price history for financial modeling.
Simple, Transparent Pricing
Every API call to Zillow Property costs 1 credit
Choose a plan based on your monthly usage. All plans include access to all APIs.
150,000 API calls/mo
$0.33 per 1K requests
- 150,000 credits/month
- 3 Concurrent Requests
- Email support
- Priority processing
700,000 API calls/mo
$0.14 per 1K requests
- 700,000 credits/month
- 10 Concurrent Requests
- Priority support
- Advanced features
3,000,000 API calls/mo
$0.10 per 1K requests
- 3M credits/month
- 30 Concurrent Requests
- Dedicated support
- Custom integrations
Need more? Check out our for enterprise options and custom plans.
Frequently Asked Questions
Common questions about the Zillow Property API.
What URL format is required?
Pass the full Zillow property URL via the `url` parameter (e.g., `url=https://www.zillow.com/homedetails/123-Main-St/12345678_zpid/`). URL-encode the parameter value.
What property details are returned?
Includes zpid, address, price, zestimate, rent estimate, beds/baths/sqft, lot size, year built, home type/status, description, coordinates, photos array, price per sqft, sale history, tax assessment, HOA fees, county, nearby schools with ratings, and detailed features (heating, cooling, parking, appliances, interior/exterior, construction, roof, stories).
Is MLS and agent info included?
Yes. The `attribution` object contains MLS ID/name, agent name/phone, and broker name/phone when available.
What school information is provided?
Schools array includes name, rating (1-10 scale), level (elementary/middle/high), distance in miles, and type (public/private/charter).
Can I test the API risk-free?
Yes! When you sign up you get 1,000 free credits — no credit card required. Try the API with real requests before committing.
What if I need help integrating?
We offer documentation, code examples in multiple languages, and email support. Most questions are answered within 24 hours.
How long does integration take?
Minutes. It's a simple REST API — make an HTTP request, get JSON back. No SDKs to install, no complex auth flows.