Zillow Agent Data Insights avatar
Zillow Agent Data Insights

Pricing

Pay per usage

Go to Apify Store
Zillow Agent Data Insights

Zillow Agent Data Insights

Pricing

Pay per usage

Rating

0.0

(0)

Developer

Property API

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:

ParameterTypeRequiredDescription
data_typeStringYesThe operation to perform. Options: find_details, find_ActiveListings, find_SoldListings, find_RentalListings, find_reviews, find_search.
zuidStringConditionalRequired for listings (Active, Sold, Rental) and reviews. The Zillow User ID of the agent.
usernameStringConditionalRequired for find_details. The Zillow username of the agent.
nameStringConditionalRequired for find_search. The name of the agent to search for.
locationStringNoOptional location string to refine find_search results (e.g., "New York, NY").
page_numberIntegerNoPage 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 zuid in the URL of the agent's profile page or by inspecting network traffic on Zillow.
  • Pagination: Use the page_number loop to retrieve all listings or reviews if the count exceeds the page limit.