# Booking.com London Hotel Price Monitor

**Use case:** 

Scrape Booking.com hotel search results for London with prices, ratings, review counts, photos, room types, and availability fields.

## Input

```json
{
  "startUrls": [
    {
      "url": "https://www.booking.com/hotel/gb/the-savoy.html"
    }
  ],
  "locationQuery": "London",
  "checkin": "2026-06-01",
  "checkout": "2026-06-03",
  "adults": 2,
  "rooms": 1,
  "children": 0,
  "maxResults": 25,
  "sortBy": "popularity",
  "currency": "GBP",
  "language": "en-us",
  "minPrice": 100,
  "maxPrice": 300,
  "starsFilter": [
    "4",
    "5"
  ]
}
```

## Output

```json
{
  "photoUrl": {
    "label": "Photo URL",
    "format": "string"
  },
  "name": {
    "label": "Name",
    "format": "string"
  },
  "url": {
    "label": "Url",
    "format": "string"
  },
  "email": {
    "label": "Email",
    "format": "string"
  },
  "website": {
    "label": "Website",
    "format": "string"
  },
  "starRating": {
    "label": "Star Rating",
    "format": "number"
  },
  "reviewScore": {
    "label": "Review Score",
    "format": "number"
  },
  "reviewCount": {
    "label": "Review Count",
    "format": "number"
  },
  "totalResults": {
    "label": "Total Results",
    "format": "number"
  },
  "price": {
    "label": "Price",
    "format": "number"
  },
  "currency": {
    "label": "Currency",
    "format": "string"
  },
  "roomType": {
    "label": "Room Type",
    "format": "string"
  },
  "location": {
    "label": "Location",
    "format": "string"
  },
  "freeCancellation": {
    "label": "Free Cancellation",
    "format": "boolean"
  }
}
```

## About this Actor

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