Airbnb Scraper avatar
Airbnb Scraper
Try for free

Pay $3.00 for 1,000 results

View all Actors
Airbnb Scraper

Airbnb Scraper

tri_angle/airbnb-scraper
Try for free

Pay $3.00 for 1,000 results

Scrape cities or direct URLs of Airbnb rentals. Extract descriptions, locations, prices per night, ratings, reviews count, host details, amenities and more. Download scraped data in various formats including HTML, JSON and Excel.

Do you want to learn more about this Actor?

Get a demo

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    {
9      "url": "https://www.airbnb.com/s/Europe/homes?tab_id=home_tab&refinement_paths%5B%5D=%2Fhomes&flexible_trip_lengths%5B%5D=one_week&monthly_start_date=2024-07-01&monthly_length=3&monthly_end_date=2024-10-01&price_filter_input_type=0&channel=EXPLORE&price_min=27&search_type=filter_change&price_max=266&min_beds=2&min_bedrooms=2&min_bathrooms=2&price_filter_num_nights=34&place_id=ChIJhdqtz4aI7UYRefD8s-aZ73I&date_picker_type=calendar&checkin=2024-06-13&checkout=2024-07-17&adults=1&children=1&infants=1&pets=1&source=structured_search_input_header&query=Europe&search_mode=regular_search&room_types%5B%5D=Entire%20home%2Fapt"
10    }
11  ]
12}
13EOF
14
15# Run the Actor using an HTTP API
16# See the full API reference at https://docs.apify.com/api/v2
17curl "https://api.apify.com/v2/acts/tri_angle~airbnb-scraper/runs?token=$API_TOKEN" \
18  -X POST \
19  -d @input.json \
20  -H 'Content-Type: application/json'
Developer
Maintained by Apify
Actor metrics
  • 313 monthly users
  • 44 stars
  • 86.3% runs succeeded
  • 2.1 days response time
  • Created in Dec 2019
  • Modified 4 days ago