Realtor.com Scraper

  • epctex/realtor-scraper
  • Modified
  • Users 488
  • Runs 21.5k
  • Created by Author's avatarepctex

Uncover valuable insights from realtor.com's extensive property listings. Extract descriptions, images, features, property details, pricing, neighborhood details, nearby schools, and more for millions of properties. Customize your searches and filters to find the perfect real estate data.

Free trial for 3 days

Then $25.00/month

No credit card required now

Realtor.com Scraper

Free trial for 3 days

Then $25.00/month

To run the code examples, you need to have an Apify account. Replace <YOUR_API_TOKEN> in the code with your API token. For a more detailed explanation, please read about running Actors via the API in Apify Docs.

# Set API token
API_TOKEN=<YOUR_API_TOKEN>

# Prepare Actor input
cat > input.json <<'EOF'
{
  "startUrls": [
    "https://www.realtor.com/realestateandhomes-search/Las-Vegas_NV",
    "https://www.realtor.com/realestateandhomes-detail/8209-Spring-Arts-Ave_Las-Vegas_NV_89129_M18560-54834",
    "https://www.realtor.com/realestateagents/5a28883df695ab0010dfe28b"
  ],
  "maxItems": 5,
  "endPage": 1,
  "search": "las vegas",
  "extendOutputFunction": "($) => { return {} }",
  "proxy": {
    "useApifyProxy": true
  }
}
EOF

# Run the Actor
curl "https://api.apify.com/v2/acts/epctex~realtor-scraper/runs?token=$API_TOKEN" \
  -X POST \
  -d @input.json \
  -H 'Content-Type: application/json'