How to Call the Zillow Search 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-search?query=33020&api_key=YOUR_API_KEY'TypeScript
const response = await fetch(`https://api.parseium.com/v1/zillow-search?query=33020&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-search?query=33020&api_key={api_key}'
)
data = response.json()
print(data)Query Parameters
Pass parameters in the URL query string:
query=33020Response Schema
The API returns structured JSON data with the following schema:
{
"success": {
"type": "boolean"
},
"totalResultCount": {
"type": "number"
},
"resultsPerPage": {
"type": "number"
},
"totalPages": {
"type": "number"
},
"currentPage": {
"type": "number"
},
"hasMore": {
"type": "boolean"
},
"nextUrl": {
"type": "string"
},
"results": [
{
"zpid": {
"type": "string"
},
"id": {
"type": "string"
},
"providerListingId": {
"type": "string"
},
"imgSrc": {
"type": "string"
},
"hasImage": {
"type": "boolean"
},
"detailUrl": {
"type": "string"
},
"statusType": {
"type": "string"
},
"statusText": {
"type": "string"
},
"countryCurrency": {
"type": "string"
},
"price": {
"type": "string"
},
"unformattedPrice": {
"type": "number"
},
"address": {
"type": "string"
},
"addressStreet": {
"type": "string"
},
"addressCity": {
"type": "string"
},
"addressState": {
"type": "string"
},
"addressZipcode": {
"type": "string"
},
"isUndisclosedAddress": {
"type": "boolean"
},
"beds": {
"type": "number"
},
"baths": {
"type": "number"
},
"area": {
"type": "number"
},
"latLong": {
"latitude": {
"type": "number"
},
"longitude": {
"type": "number"
}
},
"isZillowOwned": {
"type": "boolean"
},
"variableData": {
"type": {
"type": "string"
},
"text": {
"type": "string"
}
},
"hdpData": {
"homeInfo": {
"zpid": {
"type": "number"
},
"streetAddress": {
"type": "string"
},
"zipcode": {
"type": "string"
},
"city": {
"type": "string"
},
"state": {
"type": "string"
},
"latitude": {
"type": "number"
},
"longitude": {
"type": "number"
},
"price": {
"type": "number"
},
"bathrooms": {
"type": "number"
},
"bedrooms": {
"type": "number"
},
"livingArea": {
"type": "number"
},
"homeType": {
"type": "string"
},
"homeStatus": {
"type": "string"
},
"daysOnZillow": {
"type": "number"
},
"isFeatured": {
"type": "boolean"
},
"rentZestimate": {
"type": "number"
},
"isPreforeclosureAuction": {
"type": "boolean"
},
"homeStatusForHDP": {
"type": "string"
},
"priceForHDP": {
"type": "number"
},
"isNonOwnerOccupied": {
"type": "boolean"
},
"isPremierBuilder": {
"type": "boolean"
},
"isZillowOwned": {
"type": "boolean"
},
"currency": {
"type": "string"
},
"country": {
"type": "string"
},
"unit": {
"type": "string"
}
}
},
"isSaved": {
"type": "boolean"
},
"pgapt": {
"type": "string"
},
"sgapt": {
"type": "string"
},
"zestimate": {
"type": "number"
},
"has3DModel": {
"type": "boolean"
},
"hasVideo": {
"type": "boolean"
},
"isHomeRec": {
"type": "boolean"
},
"brokerName": {
"type": "string"
},
"isFeaturedListing": {
"type": "boolean"
},
"isShowcaseListing": {
"type": "boolean"
},
"availabilityDate": {
"type": "string"
},
"list": {
"type": "boolean"
},
"relaxed": {
"type": "boolean"
}
}
]
}Need more details? Check out our full API documentation for authentication, error handling, rate limits, and advanced options.
Use Cases for Zillow Search
See how developers use this API in production applications.
Property Discovery
Find homes for sale or rent by location, price range, or specific criteria for real estate platforms.
Market Research
Analyze local real estate markets with pricing trends, inventory levels, and property characteristics.
Lead Generation
Build databases of available properties for real estate agents, investors, or property management systems.
Simple, Transparent Pricing
Every API call to Zillow Search 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 Search API.
How do I search for properties?
Use the `query` (or `q`) parameter with a zip code (e.g., `33020`) or location-based search (e.g., `hollywood-fl/sold/`). URL-encode as needed. For subsequent pages, use the `next_url` parameter from the response.
How does pagination work?
First request uses `query` parameter. Response includes `nextUrl` if more results exist (check `hasMore` field). Pass the `nextUrl` value as `next_url` parameter (without the query) to fetch additional pages. Each page returns `resultsPerPage` listings.
What property data is included?
Each listing includes zpid (Zillow ID), price (formatted and numeric), full address components, beds/baths/area, coordinates, images, status (for sale/sold/rent), zestimate, home details (type, days on market), broker info, and flags for features like 3D models or videos.
What search formats are supported?
Supports zip codes (`33020`), city-state combinations (`hollywood-fl`), and filtered searches (`hollywood-fl/sold/`). Check Zillow URL patterns for advanced queries. Always URL-encode special characters.
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.