Redfin scraper

  • lukass/redfin-scraper
  • Modified
  • Users 91
  • Runs 576
  • Created by Author's avatarLukáš Širhal

Scrapes real-estate data from a provided location.

Free trial for 7 days

Then $30.00/month

No credit card required now

Redfin scraper

Free trial for 7 days

Then $30.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.

import { ApifyClient } from 'apify-client';

// Initialize the ApifyClient with API token
const client = new ApifyClient({
    token: '<YOUR_API_TOKEN>',
});

// Prepare actor input
const input = {
    "location": "Philadelphia",
    "maxItems": 20,
    "category": "forSale",
    "startUrls": [],
    "proxyConfig": {
        "useApifyProxy": true
    }
};

(async () => {
    // Run the actor and wait for it to finish
    const run = await client.actor("lukass/redfin-scraper").call(input);

    // Fetch and print actor results from the run's dataset (if any)
    console.log('Results from dataset');
    const { items } = await client.dataset(run.defaultDatasetId).listItems();
    items.forEach((item) => {
        console.dir(item);
    });
})();