# Scrape New York City Hotel Prices (Google Hotels)

**Use case:** 

Scrape New York City hotel prices from Google Hotels: OTA rates, star class, guest ratings and booking links. Updated on every run.

## Input

```json
{
  "searchQueries": [
    "hotels in New York City"
  ],
  "includePrices": true,
  "includeReviews": false,
  "minGuestRating": 0,
  "minStars": 0,
  "propertyTypes": [],
  "maxResults": 30,
  "adults": 2,
  "children": 0,
  "rooms": 1,
  "currency": "USD",
  "maxReviews": 100,
  "reviewsSort": "newest",
  "countryCode": "us",
  "languageCode": "en",
  "proxyConfiguration": {
    "useApifyProxy": true
  }
}
```

## Output

```json
{
  "name": {
    "label": "Hotel name",
    "format": "string"
  },
  "starClass": {
    "label": "Star class",
    "format": "number"
  },
  "rating": {
    "label": "Guest rating",
    "format": "number"
  },
  "reviewCount": {
    "label": "Review count",
    "format": "integer"
  },
  "propertyType": {
    "label": "Property type",
    "format": "string"
  },
  "leadPrice": {
    "label": "Lead price / night",
    "format": "number"
  },
  "offers": {
    "label": "Prices (all bookable options)",
    "format": "array"
  },
  "vendors": {
    "label": "Booking sources (directory)",
    "format": "array"
  },
  "currency": {
    "label": "Currency",
    "format": "string"
  },
  "checkInDate": {
    "label": "Check-in",
    "format": "string"
  },
  "checkOutDate": {
    "label": "Check-out",
    "format": "string"
  },
  "latitude": {
    "label": "Latitude",
    "format": "number"
  },
  "longitude": {
    "label": "Longitude",
    "format": "number"
  },
  "reviewsExtracted": {
    "label": "Reviews extracted",
    "format": "integer"
  },
  "hotelUrl": {
    "label": "Hotel URL",
    "format": "string"
  },
  "scrapedAt": {
    "label": "Scraped at",
    "format": "string"
  }
}
```

## About this Actor

This example demonstrates how to use [Google Hotels Scraper - Prices, OTA Rates, Room Rates & Reviews](https://apify.com/factden/google-hotels-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/factden/google-hotels-scraper) to learn more, explore other use cases, and run it yourself.