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

1# Set API token
2API_TOKEN=<YOUR_API_TOKEN>
3
4# Prepare Actor input
5cat > input.json <<'EOF'
6{
7  "startUrls": [
8    "https://www.furnishedfinder.com/housing/Atlanta/Texas/Budget3200/MoveIndate20231213/Avail",
9    "https://www.furnishedfinder.com/housing/San-Diego/California",
10    "https://www.furnishedfinder.com/property/299655_1"
11  ],
12  "searchCoordinates": [
13    {
14      "latitude": 40.7485379,
15      "longitude": -73.9870227,
16      "searchArea": 0.2
17    }
18  ],
19  "searchArea": "0.5",
20  "maxItems": 20,
21  "extendOutputFunction": "($) => { return {} }",
22  "customMapFunction": "(object) => { return {...object} }",
23  "proxy": {
24    "useApifyProxy": true
25  }
26}
27EOF
28
29# Run the Actor using an HTTP API
30# See the full API reference at https://docs.apify.com/api/v2
31curl "https://api.apify.com/v2/acts/epctex~furnishedfinder-scraper/runs?token=$API_TOKEN" \
32  -X POST \
33  -d @input.json \
34  -H 'Content-Type: application/json'
Developer
Maintained by Community
Actor metrics
  • 4 monthly users
  • 1 star
  • 97.4% runs succeeded
  • Created in Sep 2023
  • Modified 2 days ago