Zillow Search by URL Fetcher avatar
Zillow Search by URL Fetcher

Pricing

$9.99/month + usage

Go to Apify Store
Zillow Search by URL Fetcher

Zillow Search by URL Fetcher

Search Zillow properties directly using URLs and collect structured listings with price, address, and specs. Designed for bulk property data extraction from Zillow search result pages.

Pricing

$9.99/month + usage

Rating

5.0

(3)

Developer

Zillow Scraper

Zillow Scraper

Maintained by Community

Actor stats

0

Bookmarked

95

Total users

1

Monthly active users

a month ago

Last modified

Categories

Share

🔍 Zillow Search by URL - Apify Actor

📋 Overview

This Apify Actor performs property searches based on Zillow URLs and returns structured results.
It allows you to fetch property data directly from any Zillow search results page.

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


🚀 Features

  • Searches Zillow properties using provided URLs
  • Returns structured listings with ZUID, address, and price
  • Supports multiple search URLs (bulk mode)

🧩 Input Schema

Required Field

FieldTypeRequiredDescription
url_listArray of Strings✅ YesList of Zillow search URLs (one per line)

📝 Input Example

{
"url_list": [
"https://www.zillow.com/homes/for_sale/",
"https://www.zillow.com/new-york-ny/"
]
}

📤 Output Example

{
"url": "https://www.zillow.com/homes/for_sale/",
"properties": [
{
"zuid": "20482366",
"address": "123 Main St, NY 10001",
"price": 850000,
"beds": 2,
"baths": 2,
"sqft": 1200
}
],
"totalResults": 125
}

💡 Usage Tips

  • Provide one or more Zillow search URLs to fetch listings in bulk.
  • Ideal for collecting property listings by location or filter search pages.