# Hotels in London - Booking.com

**Use case:** 

Scrape Booking.com hotel listings in London with hotel names, prices, guest scores, reviews, star ratings, locations, cancellation info, and booking URLs.

## Input

```json
{
  "destinations": [
    "London"
  ],
  "checkIn": "2026-07-15",
  "checkOut": "2026-07-16",
  "adults": 2,
  "rooms": 1,
  "propertyTypes": [],
  "minReviewScore": 7,
  "maxResults": 5,
  "currency": "USD",
  "proxyConfiguration": {
    "useApifyProxy": true,
    "apifyProxyGroups": [
      "RESIDENTIAL"
    ]
  }
}
```

## Output

```json
{
  "destination": {
    "label": "Destination",
    "format": "text"
  },
  "hotelName": {
    "label": "Hotel",
    "format": "text"
  },
  "starRating": {
    "label": "Stars",
    "format": "number"
  },
  "guestReviewScore": {
    "label": "Guest Score",
    "format": "number"
  },
  "reviewCount": {
    "label": "Reviews",
    "format": "number"
  },
  "totalPrice": {
    "label": "Total Price",
    "format": "number"
  },
  "pricePerNight": {
    "label": "Per Night",
    "format": "number"
  },
  "currency": {
    "label": "Currency",
    "format": "text"
  },
  "city": {
    "label": "City",
    "format": "text"
  },
  "country": {
    "label": "Country",
    "format": "text"
  },
  "distanceFromCityCenter": {
    "label": "Distance From City Center",
    "format": "text"
  },
  "freeCancellation": {
    "label": "Free Cancellation",
    "format": "text"
  },
  "propertyUrl": {
    "label": "URL",
    "format": "link"
  },
  "propertyId": {
    "label": "Property ID",
    "format": "text"
  },
  "scrapedAt": {
    "label": "Scraped At",
    "format": "date"
  }
}
```

## About this Actor

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