VOOZH about

URL: https://apify.com/silentflow/booking-scraper

⇱ Booking Scraper Β· Apify


Pricing

$24.99/month + usage

Go to Apify Store

Scrape Booking.com hotels at scale. Extract prices, ratings, reviews, photos, availability for any destination. Filter by stars, price, score. Get 20+ data points per hotel. Supports all currencies & languages. Fast, reliable with residential proxies

Pricing

$24.99/month + usage

Rating

0.0

(0)

Developer

πŸ‘ SilentFlow

SilentFlow

Maintained by Community

Actor stats

2

Bookmarked

9

Total users

2

Monthly active users

3 months ago

Last modified

Categories

Share

Booking.com Hotel Scraper

by SilentFlow

Extract hotel data from Booking.com at scale. Get prices, ratings, reviews, photos, and availability for any destination worldwide.

✨ Why use this scraper?

  • πŸ“Š Comprehensive data β€” 20+ fields per hotel: prices, reviews, photos, amenities, and more
  • 🌍 Global coverage β€” Search any destination worldwide: cities, regions, or entire countries
  • πŸ’° Real-time prices β€” Get current availability and pricing for your dates
  • ⚑ Fast & reliable β€” ~25 hotels/second with residential proxy support

🎯 Use cases

IndustryApplication
Travel agenciesCompare hotel prices across destinations
Market researchAnalyze hospitality market trends
Price monitoringTrack competitor pricing
Data analyticsBuild travel recommendation systems
Academic researchStudy tourism and pricing patterns

πŸ“₯ Input parameters

Search

You have two options:

Option 1 (Recommended): Paste a Booking.com search URL β€” go to booking.com, set your destination, dates, guests, price range, stars, sort order, and any other filter, then copy the URL.

Option 2: Use the fields below for a simple location-based search.

ParameterTypeRequiredDescription
searchUrlstringNoFull Booking.com search URL with all filters applied
locationstringNoCity, region, or country (e.g., "Paris", "Bali", "New York")
checkInstringNoCheck-in date in YYYY-MM-DD (default: 7 days from now)
checkOutstringNoCheck-out date in YYYY-MM-DD (default: 8 days from now)
adultsintegerNoNumber of adult guests (default: 2)
childrenstringNoComma-separated ages of children (e.g., "2,5,10")
roomsintegerNoNumber of rooms (default: 1)

Either searchUrl or location is required.

Options

ParameterTypeDefaultDescription
currencystringUSDCurrency for prices (USD, EUR, GBP, JPY, etc.)
languagestringen-usResults language (en-us, fr, de, es, it, ja, etc.)
maxItemsinteger100Maximum hotels to return (max: 1,000)
enrichDetailsbooleanfalseVisit each hotel page for full description, photos, facilities

Tip: Need to filter by price, stars, or review score? Set those filters on booking.com and paste the URL into searchUrl β€” the scraper reads all filters directly from the URL.

enrichDetails adds ~1-2s per hotel (3 parallel workers). A 50-hotel scrape takes ~20-30s extra. You get full descriptions, 10-60 photos per hotel, facilities list, and highlights.

πŸ“Š Output data

Each hotel record contains:

{
"hotelId":"12345678",
"name":"Grand Hotel Paris",
"type":"Hotel",
"url":"https://www.booking.com/hotel/fr/grand-hotel-paris.html",
"address":"1 Avenue des Champs-Γ‰lysΓ©es",
"city":"Paris",
"country":"fr",
"latitude":48.8566,
"longitude":2.3522,
"distanceFromCenter":"0.5 km from center",
"publicTransport":"Champs-Γ‰lysΓ©es Clemenceau station is within 200 yards",
"starRating":5,
"reviewScore":9.2,
"reviewCount":2847,
"reviewWord":"Superb",
"price":450.00,
"originalPrice":520.00,
"currency":"EUR",
"pricePerNight":225.00,
"taxesAndCharges":45.00,
"mainPhoto":"https://cf.bstatic.com/xdata/images/hotel/...",
"photos":["https://cf.bstatic.com/..."],
"checkIn":"2026-04-15",
"checkOut":"2026-04-17",
"description":"Located on the Champs-Γ‰lysΓ©es...",
"facilities":["Free WiFi","Spa","Restaurant","Parking"],
"highlights":["Great location","Top-rated breakfast"],
"freeCancellation":true,
"breakfastIncluded":true,
"noPrepayment":false,
"isPreferred":true,
"isSustainable":true,
"scrapedAt":"2026-04-01T12:00:00Z"
}

πŸ—‚οΈ Data fields

CategoryFields
IdentityhotelId, name, type, url
Locationaddress, city, country, latitude, longitude, distanceFromCenter, publicTransport
RatingsstarRating, reviewScore, reviewCount, reviewWord
Pricingprice, originalPrice, currency, pricePerNight, taxesAndCharges, discount
MediamainPhoto, photos
Detailsdescription, facilities, highlights
PoliciesfreeCancellation, breakfastIncluded, noPrepayment
BadgesisPreferred, isPreferredPlus, isSustainable
MetacheckIn, checkOut, scrapedAt

πŸš€ Examples

Simple search β€” Paris hotels

{
"location":"Paris",
"maxItems":50
}

Detailed hotel data with photos & description

{
"location":"Tokyo",
"checkIn":"2026-07-01",
"checkOut":"2026-07-05",
"adults":2,
"currency":"JPY",
"maxItems":50,
"enrichDetails":true
}

Using a Booking.com URL (with all filters)

{
"searchUrl":"https://www.booking.com/searchresults.html?ss=New+York&checkin=2026-08-01&checkout=2026-08-03&nflt=class%3D5%3Breview_score%3D90",
"maxItems":100
}

πŸ’» Integrations

Python

from apify_client import ApifyClient
client = ApifyClient("YOUR_API_TOKEN")
run = client.actor("silentflow/booking-scraper").call(run_input={
"location":"Barcelona",
"checkIn":"2026-09-01",
"checkOut":"2026-09-03",
"maxItems":50,
"currency":"EUR"
})
for hotel in client.dataset(run["defaultDatasetId"]).iterate_items():
print(f"{hotel['name']}: {hotel['price']}{hotel['currency']}")

JavaScript

import{ ApifyClient }from'apify-client';
const client =newApifyClient({token:'YOUR_API_TOKEN'});
const run =await client.actor('silentflow/booking-scraper').call({
location:'London',
checkIn:'2026-10-15',
checkOut:'2026-10-17',
maxItems:100,
currency:'GBP'
});
const{ items }=await client.dataset(run.defaultDatasetId).listItems();
items.forEach(hotel=> console.log(`${hotel.name}: Β£${hotel.price}`));

πŸ“ˆ Performance & limits

MetricValue
Hotels per page~25
Average speed~25 hotels/second
Max items per run1,000
Supported destinationsWorldwide

πŸ’‘ Tips for best results

  1. Use specific locations β€” "Paris, France" works better than just "Paris"
  2. Use searchUrl for advanced filters β€” Set price range, stars, review score, sort order directly on booking.com, then paste the URL
  3. Set realistic dates β€” Prices vary significantly by date
  4. Start small β€” Test with maxItems: 10 before large scrapes

❓ FAQ

Q: How do I filter by price, stars, or review score? A: Go to booking.com, apply all your filters, then paste the URL into searchUrl. The scraper reads filters directly from the URL.

Q: Why are some prices different from the Booking.com website? A: Prices on Booking.com vary based on user location and login status. The scraper sees prices as a new visitor.

Q: Can I scrape hotel details pages? A: This scraper focuses on search results. For detailed info (full description, all photos, room types), contact us for a custom solution.

Q: What happens if no hotels are found? A: The scraper returns an empty dataset. Check your location spelling and date range.

πŸ“¬ Support

Need help? We're here for you:

  • Feature requests: Let us know what you need
  • Custom solutions: Contact us for enterprise integrations or high-volume needs

Check out our other scrapers: SilentFlow on Apify

You might also like

Booking.com Scraper β€” Hotels, Prices & Reviews

skipper_lume/booking-com-scraper

Scrape hotels, prices, ratings, and reviews from Booking.com. Search by destination + dates or extract detailed info from hotel URLs. Filters by stars, price range, property type, review score. Returns structured JSON with prices, discounts, availability, amenities, room types, and photos.

Booking.com Scraper

solidcode/booking-scraper

[πŸ’° $1.5 / 1K] Extract hotel and accommodation listings from Booking.com β€” prices, ratings, addresses, amenities, photos, and per-room availability. Filter by stars, guest score, price, and property type across any destination worldwide.

Simple Booking Scraper

dtrungtin/simple-booking-scraper

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.

Fast Booking Scraper

voyager/fast-booking-scraper

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.

1.5K

2.3

Booking.com Scraper API - Hotels, Prices, Ratings & Rooms

makework36/fast-booking-scraper

Scrape Booking.com hotel listings, prices, ratings, reviews, and rooms by destination and dates. Fast Playwright extraction with residential proxy.

πŸ‘ User avatar

deusex machine

26

Booking.com Scraper

automation-lab/booking-scraper

Scrape Booking.com hotels and accommodations by destination or URL. Extract prices, ratings, reviews, photos, room types, availability, and Booking.com URLs for travel data, market research, or accommodation partner lead lists.

πŸ‘ User avatar

Stas Persiianenko

291

3.0

Booking Scraper

voyager/booking-scraper

Scrape Booking with this hotels scraper and get data about accommodation on Booking.com. You can crawl by keywords or URLs for hotel prices, ratings, addresses, number of reviews, stars. You can also download all that room and hotel data from Booking.com with a few clicks: CSV, JSON, HTML, and Excel

7.6K

4.5

Booking.com Scraper - Hotel Prices & Reviews

logiover/booking-hotels-prices-scraper

Booking.com API alternative: scrape hotel prices, reviews & availability without an API key. Export Booking.com hotel data to CSV, JSON & Excel.