Realtor.com Agent Scraper avatar

Realtor.com Agent Scraper

Pricing

from $1.30 / 1,000 results

Go to Apify Store
Realtor.com Agent Scraper

Realtor.com Agent Scraper

Scrape real estate agents from Realtor.com by city or ZIP code. Optionally fetch full agent profiles and reviews via GraphQL API.

Pricing

from $1.30 / 1,000 results

Rating

0.0

(0)

Developer

Rigel Bytes

Rigel Bytes

Maintained by Community

Actor stats

0

Bookmarked

2

Total users

1

Monthly active users

17 hours ago

Last modified

Share

Extract comprehensive real estate agent data from Realtor.com by city or ZIP code — names, ratings, contact details, broker info, licenses, reviews, and more. Whether you're building a lead list, monitoring agent competition, or enriching your CRM, this scraper delivers clean structured data starting from just $2.00 per 1,000 agents.

What can Realtor.com Agent Scraper do for you?

  • Build agent lead lists — Collect agents by city or ZIP code with ratings, broker affiliation, and contact info for outbound sales and marketing.
  • Get full agent profiles — Enrich each record with bio, website, phone numbers, office address, license details, specializations, service areas, and social media links.
  • Extract agent reviews and ratings — Pull every review and testimonial with scores, comments, and verification status for reputation analysis and competitive intelligence.
  • Filter by agent type — Target buyer agents, seller agents, or both to match your specific prospecting needs.
  • Track listing statistics — Access agent sales volume, active listings, recently sold properties, and price ranges to evaluate performance.
  • Export to any format — Data comes as structured JSON, ready to export to CSV, Excel, or your CRM via Apify's built-in integrations.

What data can you extract?

DataDescription
👤 Name & ProfileFull name, profile URL, avatar, broker, and office
Ratings & ReviewsAverage rating, review count, recommendations, combined feedback
📍 LocationCity, state, search query used, autocomplete location label
🏢 Broker & OfficeBroker name, office name, address, phone, website
📞 Contact InfoPhone numbers (mobile/office), website, email from profile
📋 Bio & ExperienceProfessional bio, years of experience, designations, languages
🏠 Listing StatsActive listings, recently sold, price ranges, property details
🛠️ ServicesBuyer services, seller services offered
📜 License & MLSLicense number, state, MLS affiliations, status
🔗 Social MediaFacebook, Instagram, LinkedIn, TikTok, X, YouTube
📝 Reviews (optional)Full review text, ratings, verification, reviewer info, dates, agent replies

Why use this scraper?

  • Market research — Analyze agent density, ratings distribution, and broker market share across cities or ZIP codes.
  • Lead generation — Build targeted lists of top-rated agents for real estate software sales, marketing services, or partnership outreach.
  • Competitive intelligence — Monitor competitor agent performance, review sentiment, service offerings, and listing activity.
  • CRM enrichment — Append agent contact data, social profiles, and license information to existing records for more complete prospect profiles.
  • Automation — Schedule recurring scrapes to track agent rating changes, new reviews, and listing updates over time.

Pricing

  • Basic agent search results: $2.00/1,000 agents
  • Full agent profile details: $3.00/1,000 profiles
  • Agent reviews with testimonials: $2.00/1,000 reviews
  • Volume discounts available with Apify plan tiers (Bronze/Silver/Gold).
  • No hidden fees or limits on usage — you pay only for the data you pull.

How to use Realtor.com Agent Scraper

  1. Create an Apify account — Sign up at apify.com (free tier available).
  2. Open the actor — Go to Realtor.com Agent Scraper and click Try.
  3. Enter your search — Add cities (e.g. Austin) or ZIP codes (e.g. 78717), optionally enable details and reviews.
  4. Run the scraper — Click Run and wait for the results. Residential proxies are enabled by default.
  5. Download your data — Export as JSON, CSV, Excel, or connect via API to your CRM.

Input

The actor accepts the following input parameters:

FieldTypeRequiredDescription
citiesstring[]NoCity names to search (first autocomplete match is used per city)
zipCodesstring[]NoUS ZIP codes to search for agents
getAgentDetailsbooleanNoFetch full agent profile (bio, contact, office, licenses, social links)
getAgentReviewsbooleanNoFetch all reviews and testimonials (implies getAgentDetails)
agentTypestringNoFilter by buyer, seller, or both agent types
maxItemsintegerNoMaximum agents to scrape across all locations (0 = unlimited)
proxyConfigurationobjectNoProxy settings (residential proxies recommended)

📝 Copy for Use:

{
"cities": ["Austin"],
"maxItems": 3,
"getAgentDetails": true,
"getAgentReviews": true,
"proxyConfiguration": {
"useApifyProxy": true,
"apifyProxyGroups": ["RESIDENTIAL"]
}
}

Realtor.com Agent Scraper Output

Why Choose This Scraper?

  • Affordable: Pay from $2.00 per 1,000 agents — only pay for what you need.
  • Comprehensive: Get everything from basic search listings to full profiles with reviews, listing stats, and social media links.
  • Easy to Use: Just enter cities or ZIP codes and run. No coding required.
  • Reliable: Uses residential proxies and retry logic for consistent data extraction at scale.
  • 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

Python

from apify_client import ApifyClient
client = ApifyClient("YOUR-APIFY-TOKEN")
run = client.actor("rigelbytes/realtor-agent-scraper").call(
run_input={
"cities": ["Austin"],
"maxItems": 3,
"getAgentDetails": True,
"getAgentReviews": True,
"proxyConfiguration": {
"useApifyProxy": True,
"apifyProxyGroups": ["RESIDENTIAL"]
}
}
)
dataset_items = client.dataset(run["defaultDatasetId"]).list_items().items
print(f"Scraped {len(dataset_items)} agents")

JavaScript

import { ApifyClient } from 'apify-client';
const client = new ApifyClient({ token: 'YOUR-APIFY-TOKEN' });
const run = await client.actor('rigelbytes/realtor-agent-scraper').call({
cities: ['Austin'],
maxItems: 3,
getAgentDetails: true,
getAgentReviews: true,
proxyConfiguration: {
useApifyProxy: true,
apifyProxyGroups: ['RESIDENTIAL']
}
});
const { items } = await client.dataset(run.defaultDatasetId).listItems();
console.log(`Scraped ${items.length} agents`);

cURL

curl -X POST "https://api.apify.com/v2/acts/rigelbytes~realtor-agent-scraper/runs?token=YOUR-APIFY-TOKEN" \
-H "Content-Type: application/json" \
-d '{
"cities": ["Austin"],
"maxItems": 3,
"getAgentDetails": true,
"getAgentReviews": true,
"proxyConfiguration": {
"useApifyProxy": true,
"apifyProxyGroups": ["RESIDENTIAL"]
}
}'

🚀 Other Tools by Rigel Bytes

Explore 87 more scraping tools by Rigel Bytes, organized by use case:

📱 Social Media

Scrape Instagram, TikTok, LinkedIn, and more for content research and marketing intelligence.

  • Export Instagram Reels — Extract posts, profiles, and engagement data from Instagram for content research, influencer tracking, and marketing analytics.
  • Facebook Ads Scraper — Extract posts, profiles, and engagement data from Facebook for content research, influencer tracking, and marketing analytics.
  • Instagram Analytics Tool — Extract posts, profiles, and engagement data from Instagram for content research, influencer tracking, and marketing analytics.
  • Instagram Comment Scraper — Extract posts, profiles, and engagement data from Instagram for content research, influencer tracking, and marketing analytics.
  • Instagram Creator Stats — Extract posts, profiles, and engagement data from Instagram for content research, influencer tracking, and marketing analytics.
  • Instagram Engagement Tool — Extract posts, profiles, and engagement data from Instagram for content research, influencer tracking, and marketing analytics.
  • Instagram Post Scraper — Extract posts, profiles, and engagement data from Instagram for content research, influencer tracking, and marketing analytics.
  • instagram-posts — Extract posts, profiles, and engagement data from Instagram for content research, influencer tracking, and marketing analytics.
  • Instagram Profile Scraper — Extract posts, profiles, and engagement data from Instagram for content research, influencer tracking, and marketing analytics.
  • Instagram Reel Scraper — Extract posts, profiles, and engagement data from Instagram for content research, influencer tracking, and marketing analytics.
  • linkedin-company-details — Extract posts, profiles, and engagement data from LinkedIn for content research, influencer tracking, and marketing analytics.
  • Linkedin Company Scraper — Extract posts, profiles, and engagement data from LinkedIn for content research, influencer tracking, and marketing analytics.
  • LinkedIn Job Scraper — Extract posts, profiles, and engagement data from LinkedIn for content research, influencer tracking, and marketing analytics.
  • LinkedIn Profile Scraper — Extract posts, profiles, and engagement data from LinkedIn for content research, influencer tracking, and marketing analytics.
  • Scrape Instagram Creators — Extract posts, profiles, and engagement data from Instagram for content research, influencer tracking, and marketing analytics.
  • Tiktok Comment Scraper — Extract posts, profiles, and engagement data from TikTok for content research, influencer tracking, and marketing analytics.
  • Tiktok Creator Stats — Extract posts, profiles, and engagement data from TikTok for content research, influencer tracking, and marketing analytics.
  • Tiktok Engagement Rate — Extract posts, profiles, and engagement data from TikTok for content research, influencer tracking, and marketing analytics.
  • TikTok Profile Scraper — Extract posts, profiles, and engagement data from TikTok for content research, influencer tracking, and marketing analytics.

🏠 Real Estate

Extract property listings, prices, and agent data from top real estate platforms.

✈️ Travel & Hospitality

Monitor rentals, bookings, and travel listings at scale.

🛒 E-commerce

Scrape products, prices, and marketplace data for competitive research.

💼 Jobs & Recruitment

Collect job listings and company hiring data for market analysis.

📩 Lead Generation

Find business contacts, leads, and company data for sales and outreach.

⭐ Reviews & Ratings

Monitor reviews and reputation data across review platforms.

🍔 Food & Delivery

Extract restaurant, grocery, and delivery platform data.

🛠️ Developer Tools

General-purpose scraping and automation tools.

  • Web Crawler — Customizable web crawler with proxy support.

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

Below is a sample of the data this actor produces:

[
{
"fullName": "Andra Cortez Jackson Realtor Austin TX",
"profileUrl": "https://www.realtor.com/realestateagents/56a649a10fa417010073f11b",
"avatarUrl": "https://ap.rdcpix.com/1671514694/5926e52748f51f5e62858c04d77081dfa-e0rd-w144_h144.jpg",
"brokerName": "Team West Real Estate - Broker",
"officeName": "Team West Real Estate",
"averageRating": 5,
"reviewsCount": 8,
"recommendationsCount": 62,
"combinedReviewsCount": 70,
"locationLabel": "Austin, TX",
"searchQuery": "Austin",
"searchType": "city",
"profileId": "56a649a10fa417010073f11b",
"bio": "Andra Cortez Jackson Jr. | Trusted Austin-Area Realtor® | New Construction · Residential · Investment Properties...",
"website": "http://www.teamwestre.com",
"phones": [
{ "type": "mobile", "value": "(512) 565-8448" }
],
"licenseNumber": "0642309",
"licenseState": "TX",
"specializations": ["contracts", "negotiation", "new construction", "luxury real estate"],
"servedAreas": [
{ "name": "Austin", "state_code": "TX" },
{ "name": "Cedar Park", "state_code": "TX" }
],
"socialMedia": {
"facebook": "https://www.facebook.com/AndraJacksonHomes",
"instagram": "https://www.instagram.com/austinsfinestrealtor/",
"linkedin": "https://www.linkedin.com/in/andra-cortez-jackson-jr-98737859/"
},
"experience": {
"first_year": "2011",
"label": "15 years 6 months of experience"
},
"office": {
"name": "Team West Real Estate",
"address": {
"address_formatted_line_1": "13812 Research Blvd.",
"address_formatted_line_2": "Austin, TX 78750"
}
}
},
{
"fullName": "Christopher Watters, Realtor | Broker",
"profileUrl": "https://www.realtor.com/realestateagents/56c5b7720fa4170100761a99",
"brokerName": "",
"officeName": "Watters International Realty",
"averageRating": 4.5,
"reviewsCount": 8,
"combinedReviewsCount": 10,
"locationLabel": "Austin, TX",
"searchQuery": "Austin",
"searchType": "city",
"profileId": "56c5b7720fa4170100761a99",
"website": "http://www.ChristopherWatters.com",
"licenseNumber": "0567369",
"licenseState": "TX",
"listingStats": {
"for_sale": { "count": 162, "max": 19900000, "min": 67000 },
"recently_sold_annual": { "count": 300 }
},
"experience": {
"first_year": "2007",
"label": "19 years 6 months of experience"
}
}
]