Fast Booking Scraper
Try for free
Pay $2.00 for 1,000 results
View all Actors
Fast Booking Scraper
voyager/fast-booking-scraper
Try for free
Pay $2.00 for 1,000 results
Scrape Booking with this hotel scraper and get data about accommodation on Booking.com. Extract data by keywords or URLs for hotel prices, ratings, location, number of reviews, stars. Scrape and download data from Booking.com in JSON, Excel, HTML ,and CSV.
Do you want to learn more about this Actor?
Get a demoThe 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 "search": "New York",
8 "maxItems": 10,
9 "sortBy": "distance_from_search",
10 "starsCountFilter": "any",
11 "currency": "USD",
12 "language": "en-gb",
13 "minMaxPrice": "0-999999"
14}
15EOF
16
17# Run the Actor using an HTTP API
18# See the full API reference at https://docs.apify.com/api/v2
19curl "https://api.apify.com/v2/acts/voyager~fast-booking-scraper/runs?token=$API_TOKEN" \
20 -X POST \
21 -d @input.json \
22 -H 'Content-Type: application/json'