# Booking.com Hotel Review Scraper

**Use case:** 

Scrape Booking.com hotel reviews with reviewer country, scores, positive and negative comments, stay dates, and room types.

## Input

```json
{
  "hotelUrls": [
    "https://www.booking.com/hotel/gb/the-savoy.html"
  ],
  "maxReviews": 50,
  "language": "all",
  "sortBy": "most_relevant"
}
```

## Output

```json
{
  "hotelName": {
    "label": "Hotel",
    "format": "text"
  },
  "reviewerName": {
    "label": "Reviewer",
    "format": "text"
  },
  "reviewerCountry": {
    "label": "Country",
    "format": "text"
  },
  "score": {
    "label": "Score",
    "format": "number"
  },
  "title": {
    "label": "Title",
    "format": "text"
  },
  "positive": {
    "label": "Liked",
    "format": "text"
  },
  "negative": {
    "label": "Disliked",
    "format": "text"
  },
  "reviewDate": {
    "label": "Review Date",
    "format": "text"
  },
  "stayDate": {
    "label": "Stay Date",
    "format": "text"
  },
  "roomType": {
    "label": "Room Type",
    "format": "text"
  },
  "travellerType": {
    "label": "Traveller Type",
    "format": "text"
  }
}
```

## About this Actor

This example demonstrates how to use [Booking.com Reviews Scraper](https://apify.com/automation-lab/booking-reviews-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/automation-lab/booking-reviews-scraper) to learn more, explore other use cases, and run it yourself.