# Booking.com Reviews by Hotel URL

**Use case:** 

Paste a Booking.com hotel URL and pull its guest reviews: score, title, pros/cons text and traveler type. Reliable per-property review export. CSV/JSON.

## Input

```json
{
  "hotel": "https://www.booking.com/hotel/gb/the-ritz-london.html",
  "startUrls": [
    "https://www.booking.com/hotel/fr/le-bristol-paris.html"
  ],
  "maxReviews": 200,
  "sort": "most_relevant",
  "count": 10,
  "customerType": "",
  "scoreRange": "",
  "language": "",
  "timeOfYear": "",
  "text": "breakfast"
}
```

## Output

```json
{
  "score": {
    "label": "📊 Score",
    "format": "number"
  },
  "title": {
    "label": "📝 Title",
    "format": "string"
  },
  "positive_text": {
    "label": "👍 Liked",
    "format": "string"
  },
  "negative_text": {
    "label": "👎 Disliked",
    "format": "string"
  },
  "reviewer_country": {
    "label": "🌍 Country",
    "format": "string"
  },
  "traveller_type": {
    "label": "🧳 Traveller",
    "format": "string"
  },
  "num_nights": {
    "label": "🌙 Nights",
    "format": "integer"
  },
  "review_date": {
    "label": "🕒 Review date",
    "format": "string"
  }
}
```

## About this Actor

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