Airbnb Scraper avatar
Airbnb Scraper
Try for free

No credit card required

View all Actors
Airbnb Scraper

Airbnb Scraper

tri_angle/airbnb-scraper
Try for free

No credit card required

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.

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

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        {
12            "url": "https://www.airbnb.com/rooms/668146487515150072?source_impression_id=p3_1717602873_P33E4HNVXJqvY_yP&check_in=2024-07-08&guests=1&adults=1&check_out=2024-07-11"
13        },
14        {
15            "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"
16        }
17    ]
18};
19
20(async () => {
21    // Run the Actor and wait for it to finish
22    const run = await client.actor("tri_angle/airbnb-scraper").call(input);
23
24    // Fetch and print Actor results from the run's dataset (if any)
25    console.log('Results from dataset');
26    console.log(`šŸ’¾ Check your data here: https://console.apify.com/storage/datasets/${run.defaultDatasetId}`);
27    const { items } = await client.dataset(run.defaultDatasetId).listItems();
28    items.forEach((item) => {
29        console.dir(item);
30    });
31})();
32
33// šŸ“š Want to learn more šŸ“–? Go to ā†’ https://docs.apify.com/api/client/js/docs
Developer
Maintained by Apify
Actor metrics
  • 178 monthly users
  • 34 stars
  • 99.4% runs succeeded
  • 3.5 days response time
  • Created in Dec 2019
  • Modified about 9 hours ago