# Lisbon hotels with prices and ratings

**Use case:** 

Scrape Google Hotels for prices, star ratings, review counts, amenities and coordinates in any destination. Flat price per property.

## Input

```json
{
  "destinations": [
    "Lisbon"
  ],
  "checkIn": "2026-09-10",
  "checkOut": "2026-09-12",
  "adults": 2,
  "currency": "USD",
  "maxResults": 20
}
```

## Output

```json
{
  "name": {
    "label": "Property name",
    "format": "string"
  },
  "price": {
    "label": "Nightly price",
    "format": "number"
  },
  "currency": {
    "label": "Currency",
    "format": "string"
  },
  "checkIn": {
    "label": "Check-in",
    "format": "string"
  },
  "checkOut": {
    "label": "Check-out",
    "format": "string"
  },
  "hotelClass": {
    "label": "Stars",
    "format": "number"
  },
  "rating": {
    "label": "Google rating",
    "format": "number"
  },
  "reviewCount": {
    "label": "Reviews",
    "format": "number"
  },
  "neighborhood": {
    "label": "Neighbourhood",
    "format": "string"
  },
  "hotelUrl": {
    "label": "Google Hotels page",
    "format": "string"
  }
}
```

## About this Actor

This example demonstrates how to use [Google Hotels Scraper 🏨 (rates by date, no key)](https://apify.com/tagadanar/google-hotels-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/tagadanar/google-hotels-scraper) to learn more, explore other use cases, and run it yourself.