# Scrape hotel prices from Google Hotels to JSON

**Use case:** 

Pull rate_per_night, total_rate, hotel name, rating, and amenities for every property in a city search. Clean JSON or CSV, pay per result.

## Input

```json
{
  "search_type": "search",
  "q": "hotels in Chicago",
  "gl": "us",
  "hl": "en",
  "currency": "USD",
  "check_in_date": "2026-08-26",
  "check_out_date": "2026-08-28",
  "adults": 2,
  "children": 0,
  "min_price": "0.00",
  "max_price": "0.00",
  "guest_rating": "0.0",
  "vacation_rentals": false,
  "max_pages": 1
}
```

## Output

```json
{
  "page_number": {
    "label": "Page"
  },
  "search_timestamp": {
    "label": "Timestamp"
  },
  "search_parameters": {
    "label": "Search Parameters"
  },
  "search_metadata": {
    "label": "Metadata"
  },
  "properties": {
    "label": "Hotels"
  },
  "ads": {
    "label": "Ads"
  },
  "filters": {
    "label": "Filters"
  },
  "refine_by": {
    "label": "Refine By"
  },
  "property_details": {
    "label": "Property Details"
  }
}
```

## About this Actor

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