
AirBnb Explorer 3.0
Pricing
$30.00/month + usage

AirBnb Explorer 3.0
⭐ Scrape Airbnb.com Hotels
0.0 (0)
Pricing
$30.00/month + usage
13
Total users
658
Monthly users
14
Runs succeeded
>99%
Last modified
10 months ago
Welcome to Airbnb.com Scraper
About Airbnb.com

Airbnb, Inc. (/ˌɛərˌbiːɛnˈbiː/ AIR-BEE-en-BEE) is an American company that operates an online marketplace for lodging, primarily homestays for vacation rentals, and tourism activities. Based in San Francisco, California, the platform is accessible via website and mobile app. Airbnb does not own any of the listed properties; instead, it profits by receiving commission from each booking. The company was founded in 2008 by Brian Chesky, Nathan Blecharczyk, and Joe Gebbia. Airbnb is a shortened version of its original name, AirBedandBreakfast.com.
About This Actor
Scrape data about properties around the world. Check for availability on specific dates. Get detailed information such as amenities, description, ratings, reviews and more. Search for properties using comprehensive list of filters.
Notes The AirBnB website limiting result to 15 pages x 20 item_per_page = 300. The Actor will get as many records as possible beyond the limit, but not much.
Tutorial
Example #1: Basic Usage
Searching and limiting number of results.
{ "location": "Antarctica", "limit": 100 }
{ "location": "953482945276817965 751307134149677284" } # hotels IDs
Parameter | Type | Description |
---|---|---|
location | string | City, country or continent you wish to go, or Hotel-ID |
limit | integer | Number of results to fetch |
Example #2: Trip Length
Chose one of 3 types of Trip :
Mode | Options (trip_length ) | Other Parameters |
---|---|---|
📅 Exact Date | "date" "date-1" "date-2" "date-3" "date-7" | check_in , check_out |
🌕 Monthly | "monthly" | montly_start , montly_length |
⌛ Flexible | "weekend" "one_week" "one_month" | Optional: trip_month |
# mode: Exact date{"location" : "India", # to India"trip_length" : "date", # on exact date"check_in" : "2024-06-23", # on 23 June"check_out" : "2024-06-28", # until 28 June"limit" : 10}
# mode: Mothly{"location" : "Bali", # to Bali"trip_length" : "monthly", # monthly"monthly_start" : "2024-07-01", # from June"monthly_length" : 2, # for 2 months"limit" : 10}
# mode: Flexible{"location" : "United States", # to United States"trip_length" : "one_week", # for 1 week"trip_month" : [1, 4, 5], # in January or April or March."limit" : 10}
Check IN / OUT
Parameter | Type | Format | Description |
---|---|---|---|
check_in | string | YYYY-MM-DD | Check-in date |
check_out | string | YYYY-MM-DD | Check-out date |