Zillow Price & Tax History Fetcher avatar
Zillow Price & Tax History Fetcher

Pricing

Pay per usage

Go to Apify Store
Zillow Price & Tax History Fetcher

Zillow Price & Tax History Fetcher

Retrieve Zillow property price and tax history with event dates and amounts. Supports multiple ZUIDs and record limits. Perfect for market trend tracking, investment analysis, or valuation insights.

Pricing

Pay per usage

Rating

0.0

(0)

Developer

Zillow Scraper

Zillow Scraper

Maintained by Community

Actor stats

0

Bookmarked

2

Total users

1

Monthly active users

a day ago

Last modified

Categories

Share

💰 Zillow Price & Tax History Fetcher - Apify Actor

📋 Overview

This Apify Actor retrieves price history and tax history for Zillow properties.
It provides detailed event timelines (listed, sold, price change, etc.) and yearly tax records.

⚙️ Note: This actor is configured for the priceAndtaxHistory data type.


🚀 Features

  • Fetches both price history and tax history
  • Supports multiple properties (bulk input)
  • Allows limiting number of records fetched for faster runs

🧩 Input Schema

Required Field

FieldTypeRequiredDescription
zuid_listArray of Strings✅ YesList of Zillow property IDs (one per line)

Optional Fields

FieldTypeRequiredDescriptionDefault
countOfPriceInteger❌ NoNumber of price history records to fetch10
countOfTaxInteger❌ NoNumber of tax history records to fetch10

📝 Input Example

{
"zuid_list": [
"20482366",
"12345678",
"87654321"
],
"countOfPrice": 15,
"countOfTax": 20
}

📤 Output Example

{
"zuid": "20482366",
"priceHistory": [
{
"date": "2024-01-15",
"price": 450000,
"event": "Sold"
},
{
"date": "2023-12-01",
"price": 445000,
"event": "Listed"
}
],
"taxHistory": [
{
"year": 2024,
"taxAmount": 5400,
"assessedValue": 440000
},
{
"year": 2023,
"taxAmount": 5200,
"assessedValue": 425000
}
]
}

💡 Usage Tips

  • Use countOfPrice and countOfTax to limit data fetched.
  • Higher values return longer history, but take more time.
  • Perfect for market trend or investment analysis.