# Scrape budget stays on Booking.com

**Use case:** 

Extract apartments and budget properties from Booking.com under a nightly price cap. Pay per result.

## Input

```json
{
  "destination": "Barcelona",
  "checkin": "",
  "checkout": "",
  "adults": 2,
  "children": 0,
  "rooms": 1,
  "maxResults": 5,
  "minRating": 0,
  "minStars": 0,
  "maxPricePerNight": 120,
  "propertyType": "apartment",
  "startUrls": []
}
```

## Output

```json
{
  "name": {
    "label": "Property",
    "format": "text"
  },
  "starRating": {
    "label": "Stars",
    "format": "text"
  },
  "reviewScore": {
    "label": "Score",
    "format": "text"
  },
  "pricePerNight": {
    "label": "Price/night",
    "format": "text"
  },
  "priceCurrency": {
    "label": "Currency",
    "format": "text"
  },
  "city": {
    "label": "City",
    "format": "text"
  },
  "country": {
    "label": "Country",
    "format": "text"
  },
  "url": {
    "label": "URL",
    "format": "link"
  }
}
```

## About this Actor

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