Zillow Agent Data Scraper (Agent Listings, Reviews & Details) avatar
Zillow Agent Data Scraper (Agent Listings, Reviews & Details)

Pricing

$9.99/month + usage

Go to Apify Store
Zillow Agent Data Scraper (Agent Listings, Reviews & Details)

Zillow Agent Data Scraper (Agent Listings, Reviews & Details)

Scrape complete Zillow agent data effortlessly. Get agent details, active/rental/sold listings, reviews, and search results with one API call. Ideal for real estate analytics, lead generation, and agent performance tracking.

Pricing

$9.99/month + usage

Rating

0.0

(0)

Developer

Zoro

Zoro

Maintained by Community

Actor stats

0

Bookmarked

20

Total users

1

Monthly active users

21 days ago

Last modified

Share

Zillow Agent Data Scraper

This Apify actor allows you to fetch Zillow agent data easily — including agent listings, reviews, and profile details — directly from Zillow.

🧩 Overview

Use this actor to collect agent information such as:

  • Active, rental, and sold listings
  • Agent profile details
  • Agent reviews
  • Agent search results by name or location

Each data type corresponds to a specific function for scraping.


⚙️ Input

Your input JSON should include:

FieldTypeDescription
data_typestringThe type of data you want to fetch. Possible values: find_ActiveListings, find_RentalListings, find_SoldListings, find_reviews, find_details, find_search.
zuidstring(Required for all listings and reviews) Zillow agent unique ID.
usernamestring(Required for find_details) Zillow agent username.
namestring(Required for find_search) Agent name to search for.
locationstring(Optional, used with find_search) Location to refine search.
page_numberintegerThe page number to fetch data from (represents the current Zillow page).

🧠 Example Inputs

Active Listings

{
"data_type": "find_ActiveListings",
"zuid": "X1-ZUytn1phpg9b7t_5i26a",
"page_number": 1
}

Rental Listings

{
"data_type": "find_RentalListings",
"zuid": "X1-ZUytn1phpg9b7t_5i26a",
"page_number": 1
}

Sold Listings

{
"data_type": "find_SoldListings",
"zuid": "X1-ZUytn1phpg9b7t_5i26a",
"page_number": 20
}

Agent Reviews

{
"data_type": "find_reviews",
"zuid": "X1-ZUytn1phpg9b7t_5i26a",
"page_number": 1
}

Agent Details

{
"data_type": "find_details",
"username": "kkladakis1"
}
{
"data_type": "find_search",
"name": "John Doe",
"location": "New York",
"page_number": 1
}

📤 Output

The output is a JSON object containing the requested data from Zillow.
Each data type returns structured information based on Zillow’s layout.

Example Output (Active Listings)

{
"status": "success",
"data_type": "ActiveListings",
"page_number": 1,
"results": [
{
"listing_id": "123456",
"address": "123 Main St, New York, NY",
"price": "$450,000",
"beds": 3,
"baths": 2,
"agent_name": "John Doe",
"url": "https://www.zillow.com/homedetails/123456"
}
]
}

🚀 Notes

  • page_number refers to the current page number on Zillow (for pagination).
  • You only need to select the data_type and fill in its corresponding fields.

Created by Coder_zoro
For custom scraping or API integrations, contact for collaboration.