Booking Reviews Scraper
2 hours trial then $19.99/month - No credit card required now
Booking Reviews Scraper
2 hours trial then $19.99/month - No credit card required now
Extract detailed guest reviews, ratings, and booking information from any Booking.com hotel page. Get valuable insights including review scores, guest details, room types, and stay duration.
Booking.com Hotel Reviews Scraper 🏨
🎯 Features
- Scrapes detailed guest reviews from any Booking.com hotel page
- Extracts comprehensive review data including scores, dates, and guest information
- Supports multiple languages
- Handles pagination automatically
- Rate-limit friendly
- Proxy support (optional)
💪 Use Cases
- Market research and competitor analysis
- Hotel performance monitoring
- Customer sentiment analysis
- Travel industry insights
- Data-driven decision making for hospitality businesses
📊 Output Dataset
The scraper extracts the following data for each review:
- Overall hotel score and detailed category ratings
- Review date, title, and content (positive/negative feedback)
- Guest information (name, country, type)
- Booking details (room type, check-in/out dates, length of stay)
- Photos attached to reviews (if any)
- Hotel statistics (total reviews, category scores with bounds)
🔧 Input Parameters
Field | Type | Description |
---|---|---|
hotelUrl | String | URL of the Booking.com hotel page to scrape (required) |
maxItems | Integer | Maximum number of reviews to scrape |
💡 Usage Tips
- Use the
maxItems
parameter to control the number of reviews you want to collect - The scraper automatically handles different languages
- Results are provided in real-time as they are scraped
Input Example
A full explanation of an input example in JSON.
1{ 2 "hotelUrl": "https://www.booking.com/hotel/my/alamanda-villas-langkawi.html?aid=304142&label=gen173nr-1FCAEoggI46AdIM1gEaDGIAQGYATG4AQfIAQzYAQHoAQH4AQKIAgGoAgO4ApWtxbkGwAIB0gIkYWFkZjkyMTktNDFlOC00MzcyLTg2MzAtNGUzZDY0MmMzYzY02AIF4AIB&sid=a8da78db78dcc31a870c8d246371a1b8&dest_id=3288;dest_type=region;dist=0;group_adults=2;group_children=0;hapos=2;hpos=2;nflt=class%3D4;no_rooms=1;req_adults=2;req_children=0;room1=A%2CA;sb_price_type=total;sr_order=popularity;srepoch=1731295991;srpvid=921f143cab220aca;type=total;ucfs=1&", 3 "maxItems": 20 4}
Output sample
The results will be wrapped into a dataset which you can always find in the Storage tab. Here's an excerpt from the data you'd get if you apply the input parameters above:
And here is the same data but in JSON. You can choose in which format to download your data: JSON, JSONL, Excel spreadsheet, HTML table, CSV, or XML.
1[ 2 { 3 "hotelStats": { 4 "totalReviews": 263, 5 "scores": { 6 "hotel_staff": { 7 "score": 9.5, 8 "translation": "Personeel", 9 "bounds": { 10 "lower": 8.10095024108887, 11 "higher": 9.44069957733154 12 } 13 }, 14 "hotel_services": { 15 "score": 8.86538410186768, 16 "translation": "Faciliteiten", 17 "bounds": { 18 "lower": 7.24942493438721, 19 "higher": 8.97834968566895 20 } 21 }, 22 "hotel_clean": { 23 "score": 8.875, 24 "translation": "Hygiëne", 25 "bounds": { 26 "lower": 7.4689245223999, 27 "higher": 9.13939952850342 28 } 29 }, 30 "hotel_comfort": { 31 "score": 8.85576915740967, 32 "translation": "Comfort", 33 "bounds": { 34 "lower": 7.472825050354, 35 "higher": 9.12994956970215 36 } 37 }, 38 "hotel_value": { 39 "score": 8.75478935241699, 40 "translation": "Prijs-kwaliteitverhouding", 41 "bounds": { 42 "lower": 7.68742513656616, 43 "higher": 9.16812515258789 44 } 45 }, 46 "hotel_location": { 47 "score": 8.68725872039795, 48 "translation": "Locatie", 49 "bounds": { 50 "lower": 7.70634984970093, 51 "higher": 9.08532524108887 52 } 53 }, 54 "hotel_free_wifi": { 55 "score": 8.75, 56 "translation": "Gratis WiFi", 57 "bounds": { 58 "lower": 7.13922500610352, 59 "higher": 8.88077449798584 60 } 61 } 62 } 63 }, 64 "score": 10, 65 "reviewDate": 1661058490, 66 "title": "Geweldige, rustige locatie", 67 "positiveContent": "Schitterende, rustige locatie, tegen het bos aan waar je als je geluk hebt de aapjes tussen de bomen ziet springen. Zeer behulpzame host.", 68 "negativeContent": "Geen ontbijt (al weet je dat vantevoren) of gelegenheid om hapje/drankje te bestellen.", 69 "language": "nl", 70 "guest": { 71 "name": "Jeroen", 72 "country": "Nederland", 73 "countryCode": "nl", 74 "type": "Gezin" 75 }, 76 "booking": { 77 "roomType": "Villa met 1 Slaapkamer", 78 "roomId": 621705603, 79 "checkIn": "2022-08-19", 80 "checkOut": "2022-08-21", 81 "nights": 2, 82 "customerType": "FAMILIES" 83 }, 84 "photos": [] 85 }, 86 ... 87]