Realtor.com Scraper avatar
Realtor.com Scraper
Try for free

3 days trial then $25.00/month - No credit card required now

View all Actors
Realtor.com Scraper

Realtor.com Scraper

epctex/realtor-scraper
Try for free

3 days trial then $25.00/month - No credit card required now

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.

The code examples below show how to run the Actor and get its results. To run the code, you need to have an Apify account. Replace <YOUR_API_TOKEN> in the code with your API token, which you can find under Settings > Integrations in Apify Console. Learn mode

Node.js

Python

curl

1import { ApifyClient } from 'apify-client';
2
3// Initialize the ApifyClient with your Apify API token
4const client = new ApifyClient({
5    token: '<YOUR_API_TOKEN>',
6});
7
8// Prepare Actor input
9const input = {
10    "startUrls": [
11        "https://www.realtor.com/realestateandhomes-search/Las-Vegas_NV",
12        "https://www.realtor.com/realestateandhomes-detail/8209-Spring-Arts-Ave_Las-Vegas_NV_89129_M18560-54834",
13        "https://www.realtor.com/realestateagents/5a28883df695ab0010dfe28b"
14    ],
15    "maxItems": 5,
16    "endPage": 1,
17    "search": "las vegas",
18    "extendOutputFunction": ($) => { return {} },
19    "proxy": {
20        "useApifyProxy": true
21    }
22};
23
24(async () => {
25    // Run the Actor and wait for it to finish
26    const run = await client.actor("epctex/realtor-scraper").call(input);
27
28    // Fetch and print Actor results from the run's dataset (if any)
29    console.log('Results from dataset');
30    const { items } = await client.dataset(run.defaultDatasetId).listItems();
31    items.forEach((item) => {
32        console.dir(item);
33    });
34})();
Developer
Maintained by Community
Actor metrics
  • 36 monthly users
  • 99.9% runs succeeded
  • 1.4 days response time
  • Created in Mar 2021
  • Modified about 10 hours ago