# Hotel Rate Parity Checker: Official Site vs Booking.com & OTAs

**Use case:** 

Check if online travel agencies sell your hotel cheaper than your own website. For every night ahead get your official website price next to Booking.com, Expedia, Agoda, Hotels.com, Trip.com and 20+ other sites from Google Hotels, with the cheapest site and the exact parity gap. Run it daily and catch undercutting before your guests do. No coding needed.

## Input

```json
{
  "queries": [
    "hotels in Paris"
  ],
  "hotels": [
    "Hotel Sacher Wien"
  ],
  "checkInDate": "+1 day",
  "nights": 1,
  "numberOfDates": 14,
  "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`).
