1from apify_client import ApifyClient
2
3
4
5client = ApifyClient("<YOUR_API_TOKEN>")
6
7
8run_input = {
9 "searchUrls": ["https://www.airbnb.com/s/Los-Angeles/experiences?refinement_paths%5B%5D=%2Fexperiences&flexible_trip_lengths%5B%5D=one_week&monthly_start_date=2025-06-01&monthly_length=3&monthly_end_date=2025-09-01&price_filter_input_type=0&channel=EXPLORE&place_id=ChIJE9on3F3HwoAR9AhGJW_fL-I&date_picker_type=calendar&source=structured_search_input_header&search_type=filter_change&query=Los%20Angeles&rank_mode=default&checkin=2025-05-31"],
10 "maxItems": 30,
11}
12
13
14run = client.actor("easyapi/airbnb-experiences-scraper").call(run_input=run_input)
15
16
17print("πΎ Check your data here: https://console.apify.com/storage/datasets/" + run["defaultDatasetId"])
18for item in client.dataset(run["defaultDatasetId"]).iterate_items():
19 print(item)
20
21