
Zillow Sales Metadata History
Pricing
Pay per usage
Go to Store

Zillow Sales Metadata History
Returns real-time US property sales history from Zillow. Each record includes full_url, address, zpid, date_of_sale (YYYY-MM-DD), city, state, and zip_code. Sale price is not included in version 0.1.
5.0 (1)
Pricing
Pay per usage
0
2
1
Last modified
6 days ago
Zillow Sales History API Scraper
This Apify actor scrapes real estate sales data using the Zillow Metadata Sales History API.
Features
- 🏠 Search properties by address, date range, and pagination
- 📊 Fast sub-25ms query performance
- 🔍 Intelligent address matching
- 📈 Comprehensive sales history data
- ⚡ PostgreSQL-optimized dataset
Input Parameters
{"address": "main street","from_date": "2024-01-01","to_date": "2024-12-31","max_pages": 10,"limit_per_page": 200}
Parameters Description
- address (optional): Partial address or location to search
- from_date (optional): Start date in YYYY-MM-DD format
- to_date (optional): End date in YYYY-MM-DD format
- max_pages (default: 5): Maximum number of pages to scrape
- limit_per_page (default: 200): Results per page (max: 200)
Output
Each property record includes:
zpid
: Zillow Property IDaddress
: Full property addresscity
,state
,zip_code
: Location detailssale_price
: Sale price in USDdate_of_sale
: Sale datefull_url
: Direct Zillow listing URLscraped_at
: Timestamp of data collection
Usage Examples
Search by Address
{"address": "los angeles","max_pages": 5}
Search by Date Range
{"from_date": "2024-01-01","to_date": "2024-06-30","max_pages": 10}
Combined Search
{"address": "new york","from_date": "2024-01-01","to_date": "2024-12-31","max_pages": 20,"limit_per_page": 200}