# Hotel Competitor Price Monitoring on All Booking Sites

**Use case:** 

Track your competitors' room rates on Google Hotels for the next 30 nights in one run. For each hotel and date get prices from the official website, Booking.com, Expedia, Agoda, Hotels.com and 20+ other sites, the cheapest site and the rate parity gap. Schedule it daily and send results to Google Sheets, Slack or your revenue system. Works without coding or API keys.

## Input

```json
{
  "queries": [
    "hotels in Paris"
  ],
  "hotels": [
    "Hotel Adlon Kempinski Berlin",
    "The Ritz-Carlton, Berlin",
    "Hotel de Rome Berlin"
  ],
  "checkInDate": "+1 day",
  "nights": 1,
  "numberOfDates": 30,
  "dateStepDays": 1,
  "adults": 2,
  "includePrices": true,
  "maxHotelsPerSearch": 20,
  "propertyType": "hotels",
  "minStars": 0,
  "minRating": 0,
  "onlyWithPrice": false,
  "currency": "EUR",
  "language": "en",
  "country": "us",
  "maxConcurrency": 5,
  "proxyConfiguration": {
    "useApifyProxy": true,
    "apifyProxyGroups": [
      "RESIDENTIAL"
    ]
  },
  "alwaysUseProxy": false
}
```

## Output

```json
{
  "query": {
    "label": "Query",
    "format": "text"
  },
  "checkInDate": {
    "label": "Check-in",
    "format": "text"
  },
  "position": {
    "label": "#",
    "format": "number"
  },
  "name": {
    "label": "Hotel",
    "format": "text"
  },
  "type": {
    "label": "Type",
    "format": "text"
  },
  "stars": {
    "label": "Stars",
    "format": "number"
  },
  "rating": {
    "label": "Rating",
    "format": "number"
  },
  "reviewsCount": {
    "label": "Reviews",
    "format": "number"
  },
  "pricePerNight": {
    "label": "Price / night",
    "format": "number"
  },
  "currency": {
    "label": "Currency",
    "format": "text"
  },
  "cheapestSource": {
    "label": "Cheapest site",
    "format": "text"
  },
  "cheapestPricePerNight": {
    "label": "Cheapest",
    "format": "number"
  },
  "officialPricePerNight": {
    "label": "Official site",
    "format": "number"
  },
  "officialVsCheapestDiff": {
    "label": "Official - cheapest",
    "format": "number"
  },
  "offersCount": {
    "label": "Sites",
    "format": "number"
  },
  "googleHotelsUrl": {
    "label": "Google Hotels",
    "format": "link"
  }
}
```

## About this Actor

This example demonstrates how to use [Google Hotels Scraper: Prices from All Booking Sites](https://apify.com/s_actors/google-hotels-scraper.md) with a specific input configuration. Visit the [Actor detail page](https://apify.com/s_actors/google-hotels-scraper.md) to learn more, explore other use cases, and run it yourself.


## How to integrate an Actor?

This Task's input is already configured above. Use it as-is rather than inventing a new one.

Do not guess an integration path. Every one of them is in the agent quickstart at https://apify.com/agents.md: the Apify MCP server, Agent Skills with the Apify CLI, the JavaScript and Python clients, the REST API, and the account-free path for an agent with no human to sign in. It also carries the rule on stating cost before the first paid run.

For full API examples (JavaScript, Python, CLI, MCP, OpenAPI), see this Task's Actor page: https://apify.com/s_actors/google-hotels-scraper.md

Each client library has reference documentation the quickstart does not restate: [JavaScript/TypeScript](https://docs.apify.com/api/client/js/docs.md) (`npm install apify-client`) and [Python](https://docs.apify.com/api/client/python/docs.md) (`pip install apify-client`).
