Realtor Property Scraper
Pricing
$30.00/month + usage
Go to Apify Store

Realtor Property Scraper
Pricing
$30.00/month + usage
Rating
0.0
(0)
Developer

Logical Vivacity
Maintained by Community
Actor stats
0
Bookmarked
3
Total users
0
Monthly active users
14 hours ago
Last modified
Categories
Share
Realtor.com Property Scraper
A powerful Apify Actor for scraping property listings from Realtor.com with advanced filtering options and comprehensive property data extraction.
๐ What it does
This Actor scrapes property listings from Realtor.com and extracts:
- Property details: address, price, beds, baths, square footage, lot size, year built
- Property specifications: listing type, property type, MLS information
- Location data: coordinates, neighborhood information
- Listing metadata: date listed, status, description
- Additional data: photos, property features, and more
๐ Features
- Advanced filtering: Price range, beds/baths, square footage, year built, lot size
- Multiple listing types: For sale, for rent, sold, pending, off-market
- Property type filters: House, condo, townhouse, multi-family, land, and more
- Geographic filtering: Search by location with radius options
- Date-based filtering: Filter by listing date, update date, or past N days/hours
- Bulk processing: Configurable limits and pagination with offset support
- Data export: Clean, structured JSON output ready for analysis
๐ Input Parameters
Required Parameters
| Parameter | Type | Description | Example |
|---|---|---|---|
searchLocation | string | Location to search (city, state, ZIP code, or address) | "Austin, TX" |
Optional Parameters
| Parameter | Type | Description | Default |
|---|---|---|---|
listingType | array | Types of listings to scrape | ["for_sale"] |
propertyType | array | Property types to include | All types |
returnType | string | Output format (rows, json, count) | "rows" |
radius | number | Search radius in miles | 5 |
mlsOnly | boolean | Include only MLS listings | false |
pastDays | number | Filter listings from past N days | - |
dateFrom | string | Start date (YYYY-MM-DD) | - |
dateTo | string | End date (YYYY-MM-DD) | - |
pastHours | number | Filter listings from past N hours | - |
updatedSince | string | Filter by update date | - |
updatedInPastHours | number | Updated in past N hours | - |
foreclosure | boolean | Include foreclosure properties | false |
extraPropertyData | boolean | Include additional property details | true |
excludePending | boolean | Exclude pending properties | false |
bedsMin | number | Minimum bedrooms | - |
bedsMax | number | Maximum bedrooms | - |
bathsMin | number | Minimum bathrooms | - |
bathsMax | number | Maximum bathrooms | - |
sqftMin | number | Minimum square footage | - |
sqftMax | number | Maximum square footage | - |
priceMin | number | Minimum price | - |
priceMax | number | Maximum price | - |
lotSqftMin | number | Minimum lot size (sq ft) | - |
lotSqftMax | number | Maximum lot size (sq ft) | - |
yearBuiltMin | number | Minimum year built | - |
yearBuiltMax | number | Maximum year built | - |
limit | number | Maximum number of properties | 50 |
offset | number | Starting offset for pagination | 0 |
sortBy | string | Sort field | "list_date" |
sortDirection | string | Sort direction (asc, desc) | "desc" |
Listing Types
for_sale- Properties for salefor_rent- Rental propertiessold- Recently sold propertiespending- Properties pending saleoff_market- Off-market propertiesnew_community- New developmentsother- Other listing types
Property Types
house- Single-family homescondo- Condominiumstownhouse- Townhousesmulti_family- Multi-family propertiesland- Land/lotsother- Other property types
๐ Output
The Actor outputs structured JSON data for each property:
{"property_url": "https://www.realtor.com/realestateandhomes-detail/...","mls_id": "ABC123456","address": {"street": "123 Main St","city": "Austin","state": "TX","zip_code": "78701"},"price": 450000,"beds": 3,"baths": 2,"sqft": 1850,"lot_sqft": 8000,"year_built": 1995,"property_type": "house","listing_type": "for_sale","list_date": "2024-01-15","description": "Beautiful 3-bedroom home...","photos": ["https://..."],"latitude": 30.2672,"longitude": -97.7431}
๐ ๏ธ Usage Examples
Basic Usage
Search for homes for sale in Austin, TX:
{"searchLocation": "Austin, TX","listingType": ["for_sale"],"limit": 100}
Advanced Filtering
Search for luxury condos with specific criteria:
{"searchLocation": "Miami, FL","listingType": ["for_sale"],"propertyType": ["condo"],"priceMin": 500000,"priceMax": 2000000,"bedsMin": 2,"sqftMin": 1200,"limit": 50}
Recent Listings
Find properties listed in the past 7 days:
{"searchLocation": "San Francisco, CA","listingType": ["for_sale"],"pastDays": 7,"sortBy": "list_date","sortDirection": "desc"}