Furnished Finder Scraper avatar
Furnished Finder Scraper
Try for free

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

View all Actors
Furnished Finder Scraper

Furnished Finder Scraper

epctex/furnishedfinder-scraper
Try for free

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

Find, filter, and explore Furnished Finder properties effortlessly with our comprehensive tool. Your ideal rental is just a click away!

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 more

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.furnishedfinder.com/housing/Atlanta/Texas/Budget3200/MoveIndate20231213/Avail",
12        "https://www.furnishedfinder.com/housing/San-Diego/California",
13        "https://www.furnishedfinder.com/property/299655_1"
14    ],
15    "searchCoordinates": [
16        {
17            "latitude": 40.7485379,
18            "longitude": -73.9870227,
19            "searchArea": 0.2
20        }
21    ],
22    "searchArea": "0.5",
23    "maxItems": 20,
24    "extendOutputFunction": ($) => { return {} },
25    "customMapFunction": (object) => { return {...object} },
26    "proxy": {
27        "useApifyProxy": true
28    }
29};
30
31(async () => {
32    // Run the Actor and wait for it to finish
33    const run = await client.actor("epctex/furnishedfinder-scraper").call(input);
34
35    // Fetch and print Actor results from the run's dataset (if any)
36    console.log('Results from dataset');
37    console.log(`💾 Check your data here: https://console.apify.com/storage/datasets/${run.defaultDatasetId}`);
38    const { items } = await client.dataset(run.defaultDatasetId).listItems();
39    items.forEach((item) => {
40        console.dir(item);
41    });
42})();
43
44// 📚 Want to learn more 📖? Go to → https://docs.apify.com/api/client/js/docs
Developer
Maintained by Community
Actor metrics
  • 2 monthly users
  • 100.0% runs succeeded
  • days response time
  • Created in Sep 2023
  • Modified about 17 hours ago