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

You can access the Airbnb Scraper programmatically from your own JavaScript applications by using the Apify API. You can also choose the language preference from below. To use the Apify API, youā€™ll need an Apify account and your API token, found in Integrations settings in Apify Console.

1import { ApifyClient } from 'apify-client';
2
3// Initialize the ApifyClient with your Apify API token
4// Replace the '<YOUR_API_TOKEN>' with your token
5const client = new ApifyClient({
6    token: '<YOUR_API_TOKEN>',
7});
8
9// Prepare Actor input
10const input = {
11    "startUrls": [
12        {
13            "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"
14        }
15    ]
16};
17
18// Run the Actor and wait for it to finish
19const run = await client.actor("tri_angle/airbnb-scraper").call(input);
20
21// Fetch and print Actor results from the run's dataset (if any)
22console.log('Results from dataset');
23console.log(`šŸ’¾ Check your data here: https://console.apify.com/storage/datasets/${run.defaultDatasetId}`);
24const { items } = await client.dataset(run.defaultDatasetId).listItems();
25items.forEach((item) => {
26    console.dir(item);
27});
28
29// šŸ“š Want to learn more šŸ“–? Go to ā†’ https://docs.apify.com/api/client/js/docs

šŸ  Airbnb Scraper API in JavaScript

The Apify API client for JavaScript is the official library that allows you to use Airbnb Scraper API in JavaScript or TypeScript, providing convenience functions and automatic retries on errors.

Install the apify-client

npm install apify-client

Other API clients include:

Developer
Maintained by Apify
Actor metrics
  • 295 monthly users
  • 47 stars
  • 64.5% runs succeeded
  • 1.3 days response time
  • Created in Dec 2019
  • Modified 12 days ago