# Scrape Cheap Hotels in London from Booking.com

**Use case:** 

Export budget London hotels under GBP 120 a night: name, price perNight, rating, reviewsCount, address and booking link, in CSV or JSON.

## Input

```json
{
  "search": "London, United Kingdom",
  "startUrls": [],
  "checkIn": "+30 days",
  "checkOut": "+32 days",
  "adults": 2,
  "children": 0,
  "childrenAges": [],
  "rooms": 1,
  "propertyType": [
    "hotels"
  ],
  "starsCountFilter": [],
  "priceMax": 120,
  "sortBy": "price_low",
  "currency": "GBP",
  "language": "en-gb",
  "maxResults": 300,
  "includeRoomDetails": false
}
```

## Output

```json
{
  "name": {
    "label": "Name",
    "format": "text"
  },
  "type": {
    "label": "Type",
    "format": "text"
  },
  "stars": {
    "label": "Stars",
    "format": "number"
  },
  "rating": {
    "label": "Rating",
    "format": "number"
  },
  "reviewsCount": {
    "label": "Reviews",
    "format": "number"
  },
  "price": {
    "label": "Price",
    "format": "object"
  },
  "address": {
    "label": "Address",
    "format": "object"
  },
  "url": {
    "label": "URL",
    "format": "link"
  }
}
```

## About this Actor

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