# Booking.com Family Hotel Filter Workflow

**Use case:** 

Run a Booking.com hotel search workflow with guest counts, price filters, star ratings, sorting, currency, and language settings.

## Input

```json
{
  "startUrls": [
    {
      "url": "https://www.booking.com/hotel/gb/the-savoy.html"
    }
  ],
  "locationQuery": "Paris, France",
  "checkin": "2026-07-10",
  "checkout": "2026-07-14",
  "adults": 2,
  "rooms": 1,
  "children": 1,
  "maxResults": 40,
  "sortBy": "bayesian_review_score",
  "currency": "EUR",
  "language": "en-us",
  "minPrice": 100,
  "maxPrice": 350,
  "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.