# Find Hotel Prices in Austin by Date

**Use case:** 

Google Hotels rates for Austin, Texas for a given check-in and check-out date, with ratings and pricing.

## Input

```json
{
  "flightQueries": [],
  "hotelQueries": [
    {
      "location": "Austin",
      "checkIn": "+30",
      "checkOut": "+33"
    }
  ],
  "currency": "USD",
  "language": "en",
  "country": "us",
  "maxItemsPerQuery": 3,
  "proxyConfiguration": {
    "useApifyProxy": true
  }
}
```

## Output

```json
{
  "query_location": {
    "label": "Query location",
    "format": "string"
  },
  "check_in": {
    "label": "Check in",
    "format": "string"
  },
  "check_out": {
    "label": "Check out",
    "format": "string"
  },
  "name": {
    "label": "Hotel",
    "format": "string"
  },
  "price_nightly": {
    "label": "Nightly",
    "format": "number"
  },
  "currency": {
    "label": "Currency",
    "format": "string"
  },
  "rating": {
    "label": "Rating",
    "format": "number"
  },
  "reviews_count": {
    "label": "Reviews",
    "format": "integer"
  },
  "hotel_class": {
    "label": "Hotel class",
    "format": "integer"
  },
  "url": {
    "label": "URL",
    "format": "string"
  }
}
```

## About this Actor

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