Realtor Scraper avatar

Realtor Scraper

Pricing

from $5.00 / 1,000 results

Go to Apify Store
Realtor Scraper

Realtor Scraper

Scrape for-sale, for-rent, and sold property listings from realtor.com by location.

Pricing

from $5.00 / 1,000 results

Rating

0.0

(0)

Developer

One House

One House

Maintained by Community

Actor stats

0

Bookmarked

2

Total users

1

Monthly active users

2 days ago

Last modified

Share

Extract for-sale, for-rent, and recently-sold property listings from realtor.com by location — price, beds, baths, square footage, address, coordinates, photos, and broker.

What you get

  • Address, city, state, ZIP, county, coordinates
  • Price (list price, or sold price + sold date for recently-sold)
  • Beds, baths, square footage, lot size, year built, stories, garage
  • Listing status, list date
  • Primary photo and photo count
  • Broker/brokerage name
  • Full raw API result for anything not mapped to a named field

With Include full listing details enabled, each listing also gets one extra request for:

  • Full free-text description
  • Price per square foot (for-sale/sold)
  • Separate full/half bath counts
  • Listing agent name, email, phone, and office (when the listing has one — builder/community listings often don't)
  • Pet policy text (rentals)

How to use

  1. Open this Actor and click Start
  2. Set Location (e.g. Austin, TX) — same free-text format realtor.com's own search box accepts
  3. Pick Mode: BUY, RENT, or SOLD
  4. Optionally set Min/max price and Min/max beds — these are applied server-side by realtor.com, not filtered after the fact
  5. Set Max items to cap how many listings are returned (0 = all matching listings)
  6. Optionally enable Include full listing details for full description, agent contact, and price per sqft — one extra request per listing, so it's off by default
  7. Run and download results from the Dataset tab

Input example

{
"location": "Austin, TX",
"mode": "BUY",
"minPrice": 250000,
"minBeds": 3,
"maxItems": 100
}

Output example

{
"propertyId": "8838103763",
"url": "https://www.realtor.com/realestateandhomes-detail/11000-Anderson-Mill-Rd-Unit-11_Austin_TX_78750_M88381-03763",
"status": "for_sale",
"price": 299000,
"address": "11000 Anderson Mill Rd Unit 11",
"city": "Austin",
"state": "TX",
"postalCode": "78750",
"county": "Williamson",
"latitude": 30.450886,
"longitude": -97.814795,
"beds": 3,
"baths": 2.5,
"sqft": 1382,
"yearBuilt": 2001,
"primaryPhoto": "https://ap.rdcpix.com/...",
"brokerName": "Compass RE Texas LLC - Austin",
"source": "realtor.com",
"scrapedAt": "2026-08-08T00:00:00.000Z"
}

Tips

  • Start with a small maxItems to confirm results look right before scaling up.
  • minPrice/maxPrice/minBeds/maxBeds are applied by realtor.com's own search, so they don't cost extra requests the way client-side filtering would.
  • For SOLD mode, price is often null for older sales — check soldDate/soldPrice instead.