
Booking Scraper
- dtrungtin/booking-scraper
- Modified
- Users 3.6k
- Runs 422.7k
- Created by
Tin Duong
Scrape Booking with this free hotels scraper and get data about accommodation on Booking.com. You can crawl by keywords or URLs for hotel prices, ratings, reviews, stars, and scrape data from Booking.com with one click.
To run the code examples, you need to have an Apify account. Replace <YOUR_API_TOKEN> in the code with your API token. For a more detailed explanation, please read about running Actors via the API in Apify Docs.
# Set API token
API_TOKEN=<YOUR_API_TOKEN>
# Prepare Actor input
cat > input.json <<'EOF'
{
"search": "New York",
"maxPages": 2,
"sortBy": "distance_from_search",
"currency": "USD",
"language": "en-us",
"minMaxPrice": "0-999999",
"maxReviews": 25,
"proxyConfig": {
"useApifyProxy": true
},
"extendOutputFunction": "($) => { return {} }"
}
EOF
# Run the Actor
curl "https://api.apify.com/v2/acts/dtrungtin~booking-scraper/runs?token=$API_TOKEN" \
-X POST \
-d @input.json \
-H 'Content-Type: application/json'