# Get Rome Family Hotel Prices and Availability

**Use case:** 

Find family-friendly hotel options and their prices in Rome for upcoming holiday planning. This enables travel agents to quickly provide relevant options and pa

## Input

```json
{
  "mode": "searchHotels",
  "destination": "Rome, Italy",
  "checkIn": "2024-10-15",
  "checkOut": "2024-10-22",
  "adults": 2,
  "rooms": 2,
  "sortBy": "price",
  "starRating": "3",
  "maxItems": 60
}
```

## Output

```json
{
  "hotelId": {
    "label": "Hotel ID",
    "format": "text"
  },
  "name": {
    "label": "Name",
    "format": "text"
  },
  "destination": {
    "label": "Destination",
    "format": "text"
  },
  "checkIn": {
    "label": "Check-In",
    "format": "text"
  },
  "checkOut": {
    "label": "Check-Out",
    "format": "text"
  },
  "price": {
    "label": "Price",
    "format": "number"
  },
  "currency": {
    "label": "Currency",
    "format": "text"
  },
  "rating": {
    "label": "Rating",
    "format": "number"
  },
  "reviewCount": {
    "label": "Reviews",
    "format": "number"
  },
  "starRating": {
    "label": "Stars",
    "format": "number"
  },
  "address": {
    "label": "Address",
    "format": "text"
  },
  "imageUrl": {
    "label": "Image",
    "format": "image"
  },
  "url": {
    "label": "URL",
    "format": "link"
  },
  "scrapedAt": {
    "label": "Scraped At",
    "format": "text"
  }
}
```

## About this Actor

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