Zillow Agent Data Insights
Pricing
Pay per usage
Go to Apify Store
Zillow Agent Data Insights
Pricing
Pay per usage
Rating
0.0
(0)
Developer

Property API
Maintained by Community
Actor stats
0
Bookmarked
2
Total users
1
Monthly active users
a day ago
Last modified
Share
Zillow Agent Data Insights is a powerful Apify actor designed to extract comprehensive data about real estate agents from Zillow. Whether you need agent profiles, performance metrics, listing history, or client reviews, this tool provides detailed insights to fuel your real estate analysis.
β¨ Features
- π Agent Search: Find agents by name and location.
- π€ Profile Extractor: Get detailed agent profile information including contact info and bio.
- π Listing History: Scrape full lists of Active, Sold, and Rental listings for any agent.
- β Reviews Scraper: Extract client reviews, ratings, and testimonials.
- π Pagination Support: Efficiently traverse multiple pages of results.
- β‘ Fast & Reliable: Built on high-performance infrastructure for reliable data extraction.
π Input Parameters
The actor accepts the following input parameters in JSON format:
| Parameter | Type | Required | Description |
|---|---|---|---|
data_type | String | Yes | The operation to perform. Options: find_details, find_ActiveListings, find_SoldListings, find_RentalListings, find_reviews, find_search. |
zuid | String | Conditional | Required for listings (Active, Sold, Rental) and reviews. The Zillow User ID of the agent. |
username | String | Conditional | Required for find_details. The Zillow username of the agent. |
name | String | Conditional | Required for find_search. The name of the agent to search for. |
location | String | No | Optional location string to refine find_search results (e.g., "New York, NY"). |
page_number | Integer | No | Page number for paginated results (default: 1). |
Input Examples
1. Get Agent Details
{"data_type": "find_details","username": "kkladakis1"}
2. Get Active Listings
{"data_type": "find_ActiveListings","zuid": "X1-ZUytn1phpg9b7t_5i26a","page_number": 1}
3. Search for an Agent
{"data_type": "find_search","name": "Regina Vannicola","location": "New York"}
π¦ Output
The actor returns a dataset of JSON objects. The structure of the output depends on the selected data_type.
Listing Object Example
{"id": "2087654321","address": "123 Maple Ave, Springfield, IL","price": 350000,"status": "Sold","beds": 3,"baths": 2,"sqft": 1800,"latitude": 39.7817,"longitude": -89.6501}
Review Object Example
{"review_id": "r12345","rating": 5,"reviewer": "Jane Doe","date": "2023-10-15","comment": "Regina was amazing to work with! Highly recommended."}
π Usage Tips
- Finding the ZUID: You can often find the
zuidin the URL of the agent's profile page or by inspecting network traffic on Zillow. - Pagination: Use the
page_numberloop to retrieve all listings or reviews if the count exceeds the page limit.