# Scrape Family Stays for 2 Adults + 2 Kids - Booking.com

**Use case:** 

Search family-friendly hotels for 2 adults and 2 kids on Booking.com with hotel name, stars, review score, price, room and city. No login required.

## Input

```json
{
  "searchTerms": [
    "Orlando"
  ],
  "adults": 2,
  "children": 2,
  "childrenAges": [
    6,
    9
  ],
  "rooms": 1,
  "currency": "USD",
  "language": "en-us",
  "sortBy": "popularity",
  "minPrice": 0,
  "maxPrice": 0,
  "minReviewScore": 0,
  "minReviews": 0,
  "freeCancellationOnly": false,
  "breakfastIncludedOnly": false,
  "includeRooms": true,
  "maxResultsPerSearch": 50,
  "maxResults": 200,
  "deduplicateResults": true,
  "monitorMode": false,
  "monitorStoreName": "booking-monitor",
  "maxConcurrency": 5,
  "proxyConfiguration": {
    "useApifyProxy": true,
    "apifyProxyCountry": "US"
  }
}
```

## Output

```json
{
  "name": {
    "label": "Hotel",
    "format": "text"
  },
  "starRating": {
    "label": "Stars",
    "format": "number"
  },
  "reviewScore": {
    "label": "Score",
    "format": "number"
  },
  "reviewCount": {
    "label": "Reviews",
    "format": "number"
  },
  "price": {
    "label": "Price",
    "format": "number"
  },
  "currency": {
    "label": "Cur",
    "format": "text"
  },
  "priceBeforeDiscount": {
    "label": "Was",
    "format": "number"
  },
  "discountPercent": {
    "label": "Off %",
    "format": "number"
  },
  "freeCancellation": {
    "label": "Free cancel",
    "format": "boolean"
  },
  "breakfastIncluded": {
    "label": "Breakfast",
    "format": "boolean"
  },
  "roomName": {
    "label": "Room",
    "format": "text"
  },
  "city": {
    "label": "City",
    "format": "text"
  },
  "countryCode": {
    "label": "Country",
    "format": "text"
  },
  "url": {
    "label": "URL",
    "format": "link"
  }
}
```

## About this Actor

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