Zillow Agents avatar

Zillow Agents

Pricing

$25.00/month + usage

Go to Apify Store
Zillow Agents

Zillow Agents

The Zillow Agent Scraper helps you extract comprehensive agent data including sales stats, reviews, ratings, contact details, licenses, service areas, and more – all in one place

Pricing

$25.00/month + usage

Rating

0.0

(0)

Developer

Rigel Bytes

Rigel Bytes

Maintained by Community

Actor stats

1

Bookmarked

34

Total users

1

Monthly active users

2 days ago

Last modified

Share

Zillow Agent Scraper

The Zillow Agent Scraper helps you extract UNLIMITED comprehensive agent data including sales stats, reviews, ratings, contact details, licenses, service areas, and more – all in one place.

Whether you're in real estate analytics, lead generation, or competitor research, this tool makes it easy to gather reliable and structured data from Zillow agents.

Features

  • Contact Information
  • Reviews
  • Team Info, Business Address, and much more
  • Proxy Support: Supports both Apify-provided proxies and custom proxy configurations.
  • Retry Mechanism: Implements retry logic to handle network failures gracefully.
  • Concurrency: Process Multiple Agents at once

Pricing

  • $25/month

  • Output

    Output

View Detailed Data

Input

The actor accepts the following input:

  • City, Neighborhood, or ZIP code (list[string], required): Search Term to perform [72076]

  • Proxy (string, optional): The proxy URL to use for scraping. This ensures you can scrape images from multiple listings without being rate-limited.

  • Detailed Profiles(bool, optional(default=false)): If detailed_profiles is enabled, the scraper will also extract detailed information of every agent.

📝 Copy for Use:

{
"arabic": false,
"bengali": false,
"buying": false,
"cantonese": false,
"detailed_profiles": true,
"farsi": false,
"first_time_home_buyers": false,
"foreclosure": false,
"french": false,
"german": false,
"greek": false,
"hebrew": false,
"hindi": false,
"hungarian": false,
"investment_properties": false,
"italian": false,
"japanese": false,
"korean": false,
"lot_land": false,
"luxury_homes": false,
"mandarin": false,
"military_veterans": false,
"new_construction": false,
"polish": false,
"portuguese": false,
"property_management": false,
"proxyConfiguration": {
"useApifyProxy": true,
"apifyProxyGroups": ["RESIDENTIAL"]
},
"relocation": false,
"rentals": false,
"russian": false,
"search_keywords": ["72076"],
"selling": false,
"senior_communities": false,
"spanish": false,
"tagalog": false,
"thai": false,
"top_agent": false,
"turkish": false,
"vacation_short_term_rentals": false,
"vietnamese": false
}

Why Choose This Scraper?

  • Affordable: Unlimited scraping for just $25/month.
  • Comprehensive: Extracts all essential agent details.
  • Easy to Use: Simple setup and integration with the Apify platform.
  • Reliable: Built with retry mechanisms to handle network issues.
  • Shifter

    • Reliable residential proxies all over the world.
    • Cheap rates
    • Order Shifter Now
    • Get 10% Off any product, use coupan rigelbytes-YoBB.
  • OxyLabs

    • 100M+ Proxies
    • Fastest proxies in the market
    • Real profile, human-like Residential IPs
    • Quality assurance framework for most reliable IPs
    • Get Proxies
  • DataImpulse

Learn More About Proxies

  • Exclusive Deals: Some providers may offer special discounts or bonuses when you use our link.
  • Support Our Work: Each purchase helps us maintain and improve the tools and services we provide.
  • No Extra Cost: You pay the same price, but part of it goes to supporting our efforts.

Running via Apify Console

You can run this actor from the Apify Console by providing the necessary input parameters.

Running via API

You can trigger this actor using the Apify API, passing the required input in the request body.

API Request Example (Python)

from apify_client import ApifyClient
# Initialize the ApifyClient with your API token
client = ApifyClient("<YOUR_API_TOKEN>")
# Prepare the Actor input
run_input = {
"arabic": false,
"bengali": false,
"buying": false,
"cantonese": false,
"detailed_profiles": true,
"farsi": false,
"first_time_home_buyers": false,
"foreclosure": false,
"french": false,
"german": false,
"greek": false,
"hebrew": false,
"hindi": false,
"hungarian": false,
"investment_properties": false,
"italian": false,
"japanese": false,
"korean": false,
"lot_land": false,
"luxury_homes": false,
"mandarin": false,
"military_veterans": false,
"new_construction": false,
"polish": false,
"portuguese": false,
"property_management": false,
"proxyConfiguration": {
"useApifyProxy": true,
"apifyProxyGroups": [
"RESIDENTIAL"
]
},
"relocation": false,
"rentals": false,
"russian": false,
"search_keywords": [
"72076"
],
"selling": false,
"senior_communities": false,
"spanish": false,
"tagalog": false,
"thai": false,
"top_agent": false,
"turkish": false,
"vacation_short_term_rentals": false,
"vietnamese": false
}
# Run the Actor and wait for it to finish
run = client.actor("rigelbytes/zillow-agents").call(run_input=run_input)

JavaScript

import { ApifyClient } from 'apify-client';
// Initialize the ApifyClient with your API token
const client = new ApifyClient({
token: '<YOUR_API_TOKEN>',
});
// Prepare Actor input
const input = {
"arabic": false,
"bengali": false,
"buying": false,
"cantonese": false,
"detailed_profiles": true,
"farsi": false,
"first_time_home_buyers": false,
"foreclosure": false,
"french": false,
"german": false,
"greek": false,
"hebrew": false,
"hindi": false,
"hungarian": false,
"investment_properties": false,
"italian": false,
"japanese": false,
"korean": false,
"lot_land": false,
"luxury_homes": false,
"mandarin": false,
"military_veterans": false,
"new_construction": false,
"polish": false,
"portuguese": false,
"property_management": false,
"proxyConfiguration": {
"useApifyProxy": true,
"apifyProxyGroups": [
"RESIDENTIAL"
]
},
"relocation": false,
"rentals": false,
"russian": false,
"search_keywords": [
"72076"
],
"selling": false,
"senior_communities": false,
"spanish": false,
"tagalog": false,
"thai": false,
"top_agent": false,
"turkish": false,
"vacation_short_term_rentals": false,
"vietnamese": false
};
(async () => {
// Run the Actor and wait for it to finish
const run = await client.actor("rigelbytes/zillow-agents").call(input);
})();

Running with cURL

# Set API token
API_TOKEN=<YOUR_API_TOKEN>
# Prepare Actor input
cat > input.json <<'EOF'
{
"arabic": false,
"bengali": false,
"buying": false,
"cantonese": false,
"detailed_profiles": true,
"farsi": false,
"first_time_home_buyers": false,
"foreclosure": false,
"french": false,
"german": false,
"greek": false,
"hebrew": false,
"hindi": false,
"hungarian": false,
"investment_properties": false,
"italian": false,
"japanese": false,
"korean": false,
"lot_land": false,
"luxury_homes": false,
"mandarin": false,
"military_veterans": false,
"new_construction": false,
"polish": false,
"portuguese": false,
"property_management": false,
"proxyConfiguration": {
"useApifyProxy": true,
"apifyProxyGroups": [
"RESIDENTIAL"
]
},
"relocation": false,
"rentals": false,
"russian": false,
"search_keywords": [
"72076"
],
"selling": false,
"senior_communities": false,
"spanish": false,
"tagalog": false,
"thai": false,
"top_agent": false,
"turkish": false,
"vacation_short_term_rentals": false,
"vietnamese": false
}
EOF
# Run the Actor
curl "https://api.apify.com/v2/acts/rigelbytes/zillow-agents/runs?token=$API_TOKEN" \
-X POST \
-d @input.json \
-H 'Content-Type: application/json'

🚀 Other Tools by Rigel Bytes

Airbnb Images Downloader
A focused Airbnb image scraper that extracts all photos from an Airbnb listing page and packages the listing's image files into a compressed archive. The Act...

Zillow Scraper
A Zillow-focused web scraper that extracts structured property listing data for real estate analysis and monitoring. The Actor crawls Zillow listings to coll...

Zillow Detail Scraper
Zillow scraper with customizable proxy support. Extract comprehensive property data, including pricing, images, and location details, using your proxies for better control and efficiency. Check the recommended proxy providers below.

Daraz
A web scraping Actor that extracts product listings and detailed product and seller data from Daraz.pk (Pakistan ecommerce marketplace) for monitoring and an...

Airbnb Listing
A web-scraping Actor that bulk-extracts structured Airbnb listing data from listing pages: it retrieves listing metadata, descriptive content, property featu...

Google Maps Scraper
A Google Maps scraping Actor that extracts structured business profiles and local place intelligence at scale: it crawls Google Maps listings to collect busi...

Airbnb Availability Calendar
Exports Airbnb listing availability calendars by scraping listing pages and producing structured, per-date calendar data. The Actor extracts date entries and...

Instagram Profile Scraper
A web-scraping Actor that extracts detailed Instagram profile and media metadata from profile pages: it retrieves profile-level metrics (follower/following c...

Land.com Scraper
A Land.com-focused web scraper that crawls Land.com property listings and extracts structured real estate data for specified geographic areas and listing typ...

Airbnb Reviews
A web-scraping Actor that extracts unlimited reviews from Airbnb listings: it crawls listing review pages and produces structured review records containing r...

FurnishedFinder
A web-scraping Actor designed to extract large-scale furnished rental data from Furnished Finder: it crawls listing pages to collect listing metadata (proper...

Immobilienscout24
A scraper for immobilienscout24.de that extracts large-scale real estate listing data and contact information, optimized for bulk property data collection, i...

Airbnb Listing Urls
A web scraper that extracts unlimited Airbnb listings from search queries and returns structured listing metadata for analysis. The Actor crawls Airbnb searc...

Instagram Engagement Tool
Analyzes public Instagram profiles by scraping recent posts and profile metadata to compute engagement metrics for images and videos. The Actor extracts prof...

Instagram Post Scraper
An Instagram scraping Actor that extracts every post from Instagram profiles and produces structured post-level metadata and media assets for social media an...

BBB Scraper
A web-scraping Actor that extracts detailed business listings from the Better Business Bureau (BBB). It crawls BBB listings and produces structured business ...

Linkedin Company Scraper
A LinkedIn Company Scraper that extracts structured company profile data from LinkedIn company pages for lead generation and competitive intelligence. The Ac...

linkedin-company-details
A LinkedIn Company Scraper for extracting comprehensive company profiles and social content from LinkedIn: it scrapes and returns structured company profile ...

Instagram Reel Scraper
A web-scraping Actor that extracts all Instagram Reels from public profiles and produces structured reel-level metadata for content analysis, research, and m...

Rottentomatoes Reviews Scraper
A web-scraping Apify Actor that extracts user and critic reviews from Rotten Tomatoes pages, producing structured review records for analysis. It crawls unli...

Extract Furnished Finder Hosts
Scrapes Furnished Finder listings and extracts structured listing and host profile data for furnished rentals, including listing titles, property types, geol...

Trustpilot Reviews Scraper
A Trustpilot review scraper that collects structured review records and full reviewer profile data at scale. It extracts review content (titles and body text...

Furnished Finder Fast
An Apify Actor for scraping Furnished Finder rental listings and optional host profiles, extracting structured listing data such as photos, textual descripti...

Bayut Scraper
A web-scraping Actor for extracting structured property listings and market intelligence from Bayut.com (UAE). It crawls Bayut property pages and returns str...

dubai-listing-scraper
A web scraping Actor for Bayut.com that extracts structured UAE property listing data for sale and rent across Dubai, Abu Dhabi and other Emirates. It progra...

Tiktok Comment Scraper
A TikTok comment scraping Actor that extracts all comments from TikTok videos given a video URL. It collects commenter metadata (usernames, display names, pr...

Tiktok Engagement Rate
A TikTok profile scraper that analyzes public TikTok accounts to extract profile metadata and recent video-level interaction metrics and to compute engagemen...

Company Service Finder
Company Service Finder scrapes business listings from Google Search and Google Maps across cities and states, extracts company websites, names, phone numbers...

Website Services Finder
Website Services Finder extracts and AI-analyzes company services and business information from business websites using web crawling plus large-language and ...

Airbnb Address Finder
A web-scraping Apify Actor that bulk-extracts Airbnb listing addresses and comprehensive listing metadata from provided Airbnb listing URLs. It parses listin...

Immowelt Scraper
An Apify Actor that scrapes unlimited real estate listings from immowelt.de and returns structured property data for indexing and analysis. The Actor extract...

Propertyfinder Scraper
A scraper for propertyfinder.ae that extracts unlimited real estate listings and related metadata at scale. Implements asynchronous concurrency, automatic re...

Publix Scraper
A web scraping Actor for Publix.com that extracts grocery product data from Publix collection pages using a collection URL and a delivery/pickup location to ...

Redfin Scraper
Redfin Scraper extracts large-scale real estate listing data from Redfin search and city pages and returns structured property records for downstream analysi...

Instacart Scraper
A web-scraping Actor that extracts structured product data from instacart.com using a collection/search keyword combined with a delivery or pickup location; ...

Homedepot Scraper
A web scraper for homedepot.com that crawls collection pages and performs location-aware scraping (delivery or pickup) to extract structured product data. Th...

Doctify Scraper
A web scraping Actor that extracts structured healthcare provider and practice data from doctify.com starting from a Doctify search-results URL. The Actor ha...

Facebook Ads Scraper
Extracts structured ad data from the Facebook Ads Library using a search URL: scrapes ad metadata and creative assets (ad copy, titles, captions), destinatio...

Ticketmaster Scraper
A Ticketmaster-focused web scraper that extracts structured event metadata by location and date range for event monitoring, market research, and entertainmen...

Scrape Instagram Creators
Scrape Instagram Creators is an Instagram profile and media scraper that extracts detailed creator profile metadata and media-level information. It captures ...

Immowelt Property Scraper
A scraper for immowelt.de (Germany) that harvests large volumes of real estate listings and returns structured property records for analysis. It extracts lis...

Immobilienscout24-scraper
A web scraping Actor that extracts large volumes of real estate listings and contact information from immobilienscout24.de, focused on German property market...

Instagram Creator Stats
A scraping and analytics Actor that extracts Instagram profile metadata and per-post media details to compute engagement metrics for creator/influencer analy...

Etsy Scraper
A web-scraping Actor that extracts structured product data from Etsy.com from category pages, search results, or individual product list URLs. It crawls list...

Rightmove Scraper
Scrapes Rightmove.co.uk property listings and returns structured property records for real estate data extraction and analysis. The Actor crawls Rightmove se...

Outdoorsy Scraper
A web scraping Actor that extracts rental listing data from outdoorsy.com search result pages. It processes multiple search result URLs in a single run, issu...

Instagram Comment Scraper
A web scraping Actor that extracts all comments from Instagram posts and reels given their URLs; it captures commenter metadata (username, display name, prof...

Understanding Proxies:

When scraping data or browsing anonymously, proxies are essential. They act as intermediaries, masking your original IP address and allowing you to send requests from another location.

Why Use Proxies?

  • Avoid IP Blocks: By routing requests through proxies, you prevent the target website from recognizing your IP as a scraper or spammer.
  • Access Geo-restricted Content: Proxies let you access content or websites restricted by location.
  • Enhance Anonymity: Hide your actual IP, ensuring privacy while scraping or browsing.

Types of Proxies

  1. Residential Proxies
    • Real IP addresses provided by ISPs to home users.
    • They mimic regular users, making them harder to detect.
    • Best for: Long-term, undetectable scraping, and avoiding blocks.
  2. Data Center Proxies
    • IP addresses from servers in data centers.
    • Faster and cheaper than residential proxies but easier to detect and block.
    • Best for: High-speed scraping, but with a higher risk of detection.
  3. Mobile Proxies
    • IPs provided by mobile carriers (3G/4G/5G networks).
    • Very difficult to detect, as they appear as regular mobile users.
    • Best for: Mobile-related scraping or avoiding sophisticated blocks.

Rotating Proxies vs. Straight Proxies

  • Rotating Proxies: Every request you send goes through a different proxy, making it harder for websites to detect patterns.
  • Straight Proxies: All requests are sent through the same proxy, making it easier to track your IP.

About Rigel Bytes

Rigel Bytes specializes in web scraping, automation, and data analytics. We help businesses extract and leverage valuable data for informed decision-making.

Contact Us

Ready to unlock the power of data? Reach out to us at (contact@rigelbytes.com) or book an appointment with us to learn more about how we can help you achieve your data goals.

Detailed Data

[
{
"link": "https://www.zillow.com/profile/Julann-Carney",
"title": "Julann Carney",
"secondary_title": "McKimmey Associates, Realtors",
"image_url": "https://photos.zillowstatic.com/fp/4421ecc2d097eb497dc01444f96deca4-h_l.jpg",
"top_agent": false,
"review_count": "(58)",
"review_average": 5,
"profile_data": [
{
"price range": "$82K - $379K"
},
{
"sales last 12 months": "8"
},
{
"sales in 72076": "37"
}
],
"tags": [],
"licenses": [
{
"text": "SA00057328",
"state": "AR",
"status": "expired",
"original_status": "disabled",
"license_type": "agent",
"expiration": "2024-12-31"
},
{
"text": "SA00057228",
"state": "AR",
"status": "expired",
"original_status": "active",
"license_type": "agent",
"expiration": "2023-12-31"
},
{
"text": "SA00047228",
"state": "AR",
"status": "expired",
"original_status": "disabled",
"license_type": "agent",
"expiration": "2021-12-31"
}
],
"agent_sales_stats": {
"countAllTime": 173,
"countLastYear": 8,
"priceRangeThreeYearMin": 82500,
"priceRangeThreeYearMax": 379900,
"averageValueThreeYear": 216755,
"stats_include_team": false
},
"business_address": {
"address1": "5317 John F. Kennedy Blvd",
"address2": null,
"city": "North Little Rock",
"state": "AR",
"postalCode": "72116"
},
"business_name": "McKimmey Associates, Realtors",
"phone_numbers": {
"cell": "(501) 258-4779",
"brokerage": null,
"business": "(501) 258-4779"
},
"email": "julanncarney@att.net",
"ratings": {
"count": 58,
"average": 5
},
"is_premier_agent": true,
"profile_photo": "https://photos.zillowstatic.com/fp/4421ecc2d097eb497dc01444f96deca4-h_l.jpg",
"name": "Julann Carney",
"in_canada": false,
"know_me": {
"title": "Realtor",
"description": "<p>I'm a 3rd generation real estate investor, not only do I work with buyers &amp; sellers &amp; investors, I also actively invest in property. I enjoy putting my experience to work for my clients. <br /> <br />My passion and joy in real estate is helping my clients fulfill their real estate goals and providing a service level that exceeds their expectations. Real estate is not about commissions, but, rather cultivating relationships which can last a life time. <br /> <br />I also have an extensive property management background, construction management experience and have assisted several investors with remodeling/renovation consultation. McKimmey Associates Realtors provides a wide variety of rental properties in Central Arkansas. <br /> <br />It is critical that a real estate agent keep themselves informed of market information, loan &amp; grant programs. I constantly read articles, research &amp; publications to keep myself informed &amp; share that knowledge with my clients. <br /> <br />2009-2023 Award of Excellence recipient from the North Pulaski Board of Realtors and the Arkansas Realtors Association. <br /> <br />Bachelor of Arts (BA) - Hendrix College, Conway, Arkansas. <br />Master of Arts (MA) - University of Arkansas at Little Rock with honors.</p>\n",
"yearsInIndustry": 21,
"videoUrl": null,
"specialties": [
"Buyer's Agent",
"Listing Agent",
"Relocation",
"Foreclosure",
"Property Management",
"Investment Properties",
"Rentals",
"New Construction"
],
"languages": [],
"websiteUrl": "http://www.mckimmey.com",
"facebookUrl": "https://www.facebook.com/RocknrollaRealtor",
"linkedInUrl": "http://www.linkedin.com/profile?viewProfile=&key=32095778&locale=en_US&trk=tab_pro",
"xUrl": "https://twitter.com/JulannCarney"
},
"for_sale_listings": {
"listings": [
{
"zpid": 261207,
"home_type": "singleFamily",
"address": {
"line1": "23 Ariel Dr",
"line2": "Ward, AR 72176",
"city": "Ward",
"stateOrProvince": "AR",
"postalCode": "72176"
},
"bedrooms": 3,
"bathrooms": 2,
"openHouses": "",
"hasOpenHouse": false,
"primary_photo_url": "https://photos.zillowstatic.com/fp/cf2abb9d5ada18fcc9db3023be80569a-a_a.jpg",
"price": 159999,
"price_currency": "usd",
"status": "fsba",
"latitude": 35.026463,
"longitude": -91.95937,
"brokerage_name": "McKimmey Associates REALTORS NLR",
"home_marketing_status": "active",
"home_marketing_type": "forSale",
"has_vr_model": true,
"listing_url": "/homedetails/23-Ariel-Dr-Ward-AR-72176/261207_zpid/"
}
],
"listing_count": 1
},
"for_rent_listings": {
"listings": [],
"listing_count": 0
},
"past_sales": {
"total": 173,
"past_sales": [
{
"represented": "Seller",
"representedList": ["Seller"],
"sold_date": "8/8/2025",
"price": "$176,500",
"zpid": 264218,
"image_url": "https://photos.zillowstatic.com/fp/1762fea0256d87d104bea6e5b870c82e-p_b.jpg",
"medium_image_url": "https://photos.zillowstatic.com/fp/1762fea0256d87d104bea6e5b870c82e-p_d.jpg",
"image_alt": "609 Braden St, Jacksonville, AR, 72076",
"home_details_url": "/homedetails/609-Braden-St-Jacksonville-AR-72076/264218_zpid/",
"street_address": "609 Braden St",
"city_state_zipcode": "Jacksonville, AR, 72076",
"latitude": 34.871937,
"longitude": -92.11564,
"bathrooms": 2,
"bedrooms": 3,
"city": "Jacksonville",
"state": "AR",
"livingAreaValue": 1644,
"livingAreaUnitsShort": "sqft",
"mlsLogoSrc": "https://photos.zillowstatic.com/fp/19e7bcbe73b7e6c8d48d299d96f774fd-zillow_web_48_23.jpg"
},
{
"represented": "Seller",
"representedList": ["Seller"],
"sold_date": "7/14/2025",
"price": "$203,000",
"zpid": 273002,
"image_url": "https://photos.zillowstatic.com/fp/2a55c4870fca78a7b78969a0b06a5ad7-p_b.jpg",
"medium_image_url": "https://photos.zillowstatic.com/fp/2a55c4870fca78a7b78969a0b06a5ad7-p_d.jpg",
"image_alt": "113 Sugar Maple Dr, Sherwood, AR, 72120",
"home_details_url": "/homedetails/113-Sugar-Maple-Dr-Sherwood-AR-72120/273002_zpid/",
"street_address": "113 Sugar Maple Dr",
"city_state_zipcode": "Sherwood, AR, 72120",
"latitude": 34.848118,
"longitude": -92.193954,
"bathrooms": 2,
"bedrooms": 3,
"city": "Sherwood",
"state": "AR",
"livingAreaValue": 1547,
"livingAreaUnitsShort": "sqft",
"mlsLogoSrc": "https://photos.zillowstatic.com/fp/19e7bcbe73b7e6c8d48d299d96f774fd-zillow_web_48_23.jpg"
},
{
"represented": "Seller",
"representedList": ["Seller"],
"sold_date": "6/27/2025",
"price": "$250,000",
"zpid": 281802,
"image_url": "https://photos.zillowstatic.com/fp/89928aad580aa77f6f02654e725a5159-p_b.jpg",
"medium_image_url": "https://photos.zillowstatic.com/fp/89928aad580aa77f6f02654e725a5159-p_d.jpg",
"image_alt": "206 Beaconsfield Rd, Sherwood, AR, 72120",
"home_details_url": "/homedetails/206-Beaconsfield-Rd-Sherwood-AR-72120/281802_zpid/",
"street_address": "206 Beaconsfield Rd",
"city_state_zipcode": "Sherwood, AR, 72120",
"latitude": 34.816772,
"longitude": -92.21287,
"bathrooms": 3,
"bedrooms": 4,
"city": "Sherwood",
"state": "AR",
"livingAreaValue": 2409,
"livingAreaUnitsShort": "sqft",
"mlsLogoSrc": "https://photos.zillowstatic.com/fp/19e7bcbe73b7e6c8d48d299d96f774fd-zillow_web_48_23.jpg"
},
{
"represented": "Seller",
"representedList": ["Seller"],
"sold_date": "5/27/2025",
"price": "$82,500",
"zpid": 305999,
"image_url": "https://photos.zillowstatic.com/fp/206a256444a799363a227cccd70a7781-p_b.jpg",
"medium_image_url": "https://photos.zillowstatic.com/fp/206a256444a799363a227cccd70a7781-p_d.jpg",
"image_alt": "6511 Heilman Ct, North little rock, AR, 72118",
"home_details_url": "/homedetails/6511-Heilman-Ct-North-Little-Rock-AR-72118/305999_zpid/",
"street_address": "6511 Heilman Ct",
"city_state_zipcode": "North little rock, AR, 72118",
"latitude": 34.812813,
"longitude": -92.31017,
"bathrooms": 2,
"bedrooms": 4,
"city": "North little rock",
"state": "AR",
"livingAreaValue": 1904,
"livingAreaUnitsShort": "sqft",
"mlsLogoSrc": "https://photos.zillowstatic.com/fp/19e7bcbe73b7e6c8d48d299d96f774fd-zillow_web_48_23.jpg"
},
{
"represented": "Buyer",
"representedList": ["Buyer"],
"sold_date": "5/19/2025",
"price": "$325,000",
"zpid": 268466,
"image_url": "https://photos.zillowstatic.com/fp/27d9cb7b6f5ea2fce1f3e7d357f715bd-p_b.jpg",
"medium_image_url": "https://photos.zillowstatic.com/fp/27d9cb7b6f5ea2fce1f3e7d357f715bd-p_d.jpg",
"image_alt": "2030 Dean Martin Dr, Cabot, AR, 72023",
"home_details_url": "/homedetails/2030-Dean-Martin-Dr-Cabot-AR-72023/268466_zpid/",
"street_address": "2030 Dean Martin Dr",
"city_state_zipcode": "Cabot, AR, 72023",
"latitude": 34.98226,
"longitude": -92.13435,
"bathrooms": 2,
"bedrooms": 3,
"city": "Cabot",
"state": "AR",
"livingAreaValue": 2390,
"livingAreaUnitsShort": "sqft",
"mlsLogoSrc": "https://photos.zillowstatic.com/fp/19e7bcbe73b7e6c8d48d299d96f774fd-zillow_web_48_23.jpg"
}
]
},
"preferred_lenders": {
"lenders": []
},
"reviews_data": {
"reviews": [
{
"reviewComment": "Julann is a rock star -- meaning to me, she knows the business; she knows the community and its real estate trends; she knows houses; she is responsive and helpful even after the sale, when you need a plumber rec or someone who knows how to repair drywall; and she is no nonsense. \n\nShe will tell you what you need to hear, even if it's not necessarily what you want to hear about a house. We have used her to buy a house, to sell a house...and she will help us find our next house. I have no hesitation about recommending her.",
"reviewId": 6917078,
"subRatings": [
{
"description": "Local knowledge",
"score": 5
},
{
"description": "Process expertise",
"score": 5
},
{
"description": "Responsiveness",
"score": 5
},
{
"description": "Negotiation skills",
"score": 5
}
],
"reviewee": {
"screenName": "Julann Carney",
"firstName": "Julann",
"lastName": "Carney",
"suffix": null,
"showName": true,
"encodedZuid": "X1-ZUyvudrxnjzuo9_4ye7o"
},
"reviewer": {
"screenName": "ark jedi",
"firstName": null,
"lastName": null,
"suffix": null,
"showName": true,
"encodedZuid": "X1-ZUzsx5d13gnhmx_6msnz"
},
"rating": 5,
"createDate": "2021-09-09T15:08:00",
"rebuttal": null,
"workDescription": "Sold a Single Family home in 2021 in North little rock, AR."
},
{
"reviewComment": "Julann knows her stuff! She will always look out for you and your needs. She is professional and is always available to answer any questions you may have. I am a picky buyer and she was able to get everything we wanted. Don't hesitate, just trust her knowledge and go with the best!",
"reviewId": 6436381,
"subRatings": [
{
"description": "Local knowledge",
"score": 5
},
{
"description": "Process expertise",
"score": 5
},
{
"description": "Responsiveness",
"score": 5
},
{
"description": "Negotiation skills",
"score": 5
}
],
"reviewee": {
"screenName": "Julann Carney",
"firstName": "Julann",
"lastName": "Carney",
"suffix": null,
"showName": true,
"encodedZuid": "X1-ZUyvudrxnjzuo9_4ye7o"
},
"reviewer": {
"screenName": "tmadryga",
"firstName": "Christine",
"lastName": "Madryga",
"suffix": null,
"showName": false,
"encodedZuid": "X1-ZU13e03x8eojyfd_1y8fb"
},
"rating": 5,
"createDate": "2021-01-18T13:23:00",
"rebuttal": null,
"workDescription": "Bought and sold a Single Family home in 2020 in Hensley, AR."
},
{
"reviewComment": "She is absolutely THE BEST realtor. We had a different realtor for 6 month. We fired her and went with julann. Sold 2 houses in no time. Totally recommend her.",
"reviewId": 4190502,
"subRatings": [
{
"description": "Local knowledge",
"score": 5
},
{
"description": "Process expertise",
"score": 5
},
{
"description": "Responsiveness",
"score": 5
},
{
"description": "Negotiation skills",
"score": 5
}
],
"reviewee": {
"screenName": "Julann Carney",
"firstName": "Julann",
"lastName": "Carney",
"suffix": null,
"showName": true,
"encodedZuid": "X1-ZUyvudrxnjzuo9_4ye7o"
},
"reviewer": {
"screenName": "zuser20170425083225027",
"firstName": null,
"lastName": null,
"suffix": null,
"showName": true,
"encodedZuid": "X1-ZU11lhrqxxjr7d5_8z2sb"
},
"rating": 5,
"createDate": "2018-05-22T17:14:00",
"rebuttal": null,
"workDescription": "Sold a home in 2017 in AR 72076."
},
{
"reviewComment": "If you want someone you can trust go with Julann. She is knowledgeable, patient and will be your guide through the process. I would use her again in a heartbeat.",
"reviewId": 4007762,
"subRatings": [
{
"description": "Local knowledge",
"score": 5
},
{
"description": "Process expertise",
"score": 5
},
{
"description": "Responsiveness",
"score": 5
},
{
"description": "Negotiation skills",
"score": 5
}
],
"reviewee": {
"screenName": "Julann Carney",
"firstName": "Julann",
"lastName": "Carney",
"suffix": null,
"showName": true,
"encodedZuid": "X1-ZUyvudrxnjzuo9_4ye7o"
},
"reviewer": {
"screenName": "wjb13",
"firstName": null,
"lastName": null,
"suffix": null,
"showName": true,
"encodedZuid": "X1-ZU108tbsy7qcq2x_89sjt"
},
"rating": 5,
"createDate": "2018-03-09T07:41:00",
"rebuttal": null,
"workDescription": "Sold a Vacant Land home in 2017 in Lonoke, AR."
},
{
"reviewComment": "I’ve known Julann for a while and was not disappointed in the service she provided! She’s knowledgeable and will be straightforward with you. I would use her again if I were to buy or sell a house.",
"reviewId": 3732654,
"subRatings": [
{
"description": "Local knowledge",
"score": 5
},
{
"description": "Process expertise",
"score": 5
},
{
"description": "Responsiveness",
"score": 5
},
{
"description": "Negotiation skills",
"score": 5
}
],
"reviewee": {
"screenName": "Julann Carney",
"firstName": "Julann",
"lastName": "Carney",
"suffix": null,
"showName": true,
"encodedZuid": "X1-ZUyvudrxnjzuo9_4ye7o"
},
"reviewer": {
"screenName": "dgmeyer3",
"firstName": null,
"lastName": null,
"suffix": null,
"showName": true,
"encodedZuid": "X1-ZU10lfjw5y68n49_7nbg9"
},
"rating": 5,
"createDate": "2017-11-01T11:43:00",
"rebuttal": null,
"workDescription": "Bought a Single Family home in 2017 in Sherwood, AR."
}
],
"filters": [
{
"prompt": "All reviews",
"count": 58,
"serviceTypeIds": null
},
{
"serviceTypeIds": [1],
"count": 32,
"prompt": "Helped me buy"
},
{
"serviceTypeIds": [2],
"count": 19,
"prompt": "Helped me sell"
},
{
"serviceTypeIds": [3],
"count": 2,
"prompt": "Helped me buy and sell"
},
{
"serviceTypeIds": [7, 6, 4, 5, 999],
"count": 3,
"prompt": "We connected, but it did not work out"
},
{
"serviceTypeIds": [9, 10, 11, 12],
"count": 2,
"prompt": "Renting or property management"
}
]
},
"service_areas": [
{
"regionId": 1149,
"text": "Lonoke County, AR",
"url": "/lonoke-county-ar/"
},
{
"regionId": 1981,
"text": "Pulaski County, AR",
"url": "/pulaski-county-ar/"
},
{
"regionId": 4884,
"text": "Gibson, Sherwood, AR",
"url": "/gibson-sherwood-ar/"
},
{
"regionId": 5692,
"text": "Lonoke, AR",
"url": "/lonoke-ar/"
},
{
"regionId": 9412,
"text": "Ward, AR",
"url": "/ward-ar/"
},
{
"regionId": 9826,
"text": "Cabot, AR",
"url": "/cabot-ar/"
},
{
"regionId": 12087,
"text": "Jacksonville, AR",
"url": "/jacksonville-ar/"
},
{
"regionId": 12624,
"text": "Mayflower, AR",
"url": "/mayflower-ar/"
},
{
"regionId": 20468,
"text": "Sherwood, AR",
"url": "/sherwood-ar/"
},
{
"regionId": 23988,
"text": "Cato, Sherwood, AR",
"url": "/cato-sherwood-ar/"
},
{
"regionId": 24937,
"text": "Gravel Ridge, Jacksonville, AR",
"url": "/gravel-ridge-jacksonville-ar/"
},
{
"regionId": 29642,
"text": "Galloway, North Little Rock, AR",
"url": "/galloway-north-little-rock-ar/"
},
{
"regionId": 37227,
"text": "Austin, AR",
"url": "/austin-ar/"
},
{
"regionId": 39564,
"text": "Macon, Jacksonville, AR",
"url": "/macon-jacksonville-ar/"
},
{
"regionId": 40057,
"text": "North Little Rock, AR",
"url": "/north-little-rock-ar/"
},
{
"regionId": 40849,
"text": "Shannon Hills, AR",
"url": "/shannon-hills-ar/"
},
{
"regionId": 46019,
"text": "Keo, AR",
"url": "/keo-ar/"
},
{
"regionId": 51245,
"text": "Cammack Village, AR",
"url": "/cammack-village-ar/"
},
{
"regionId": 52998,
"text": "Little Rock, AR",
"url": "/little-rock-ar/"
},
{
"regionId": 53198,
"text": "Maumelle, AR",
"url": "/maumelle-ar/"
},
{
"regionId": 54343,
"text": "Scott, AR",
"url": "/scott-ar/"
},
{
"regionId": 57239,
"text": "Mabelvale, AR",
"url": "/mabelvale-ar/"
},
{
"regionId": 109943,
"text": "Oak Forest, Little Rock, AR",
"url": "/oak-forest-little-rock-ar/"
},
{
"regionId": 110067,
"text": "Park Hill, North Little Rock, AR",
"url": "/park-hill-north-little-rock-ar/"
},
{
"regionId": 273009,
"text": "Boyle Park, Little Rock, AR",
"url": "/boyle-park-little-rock-ar/"
},
{
"regionId": 273129,
"text": "Capitol View-Stifft Station, Little Rock, AR",
"url": "/capitol-view-stifft-station-little-rock-ar/"
},
{
"regionId": 273957,
"text": "Heights, Little Rock, AR",
"url": "/heights-little-rock-ar/"
},
{
"regionId": 274016,
"text": "Hillcrest, Little Rock, AR",
"url": "/hillcrest-little-rock-ar/"
},
{
"regionId": 275186,
"text": "River Mountain, Little Rock, AR",
"url": "/river-mountain-little-rock-ar/"
},
{
"regionId": 275222,
"text": "Rock Creek, Little Rock, AR",
"url": "/rock-creek-little-rock-ar/"
},
{
"regionId": 276451,
"text": "Midtown, Little Rock, AR",
"url": "/midtown-little-rock-ar/"
},
{
"regionId": 276529,
"text": "Reservoir, Little Rock, AR",
"url": "/reservoir-little-rock-ar/"
}
],
"team_info": {
"teamLeadInfo": null,
"teamMemberInfo": null
}
}
]