Zillow Sales Metadata History avatar

Zillow Sales Metadata History

Pricing

Pay per usage

Go to Apify Store
Zillow Sales Metadata History

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.

Pricing

Pay per usage

Rating

0.0

(0)

Developer

Nandhini

Nandhini

Maintained by Community

Actor stats

0

Bookmarked

12

Total users

1

Monthly active users

10 months ago

Last modified

Categories

Share

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 ID
  • address: Full property address
  • city, state, zip_code: Location details
  • sale_price: Sale price in USD
  • date_of_sale: Sale date
  • full_url: Direct Zillow listing URL
  • scraped_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
}
{
"address": "new york",
"from_date": "2024-01-01",
"to_date": "2024-12-31",
"max_pages": 20,
"limit_per_page": 200
}