# Tokyo hotel prices in yen from Google Hotels

**Use case:** 

Hotels in Tokyo from Google Hotels priced in Japanese yen for a 2-night stay 30 days out: nightly and total price, rating, reviews, stars, amenities and map links, cheapest first. Export as JSON, CSV or Excel.

## Input

```json
{
  "locations": [
    "Tokyo"
  ],
  "checkInDate": "+30",
  "checkOutDate": "+32",
  "currency": "JPY",
  "maxHotels": 40
}
```

## Output

```json
{
  "hotelName": {
    "label": "Hotel Name",
    "format": "string"
  },
  "pricePerNightText": {
    "label": "Price Per Night Text",
    "format": "string"
  },
  "totalPriceText": {
    "label": "Total Price Text",
    "format": "string"
  },
  "totalWithTaxes": {
    "label": "Total With Taxes",
    "format": "string"
  },
  "currency": {
    "label": "Currency",
    "format": "string"
  },
  "rating": {
    "label": "Rating",
    "format": "string"
  },
  "reviewCount": {
    "label": "Review Count",
    "format": "string"
  },
  "stars": {
    "label": "Stars",
    "format": "string"
  },
  "checkInDate": {
    "label": "Check In Date",
    "format": "string"
  },
  "checkOutDate": {
    "label": "Check Out Date",
    "format": "string"
  },
  "adults": {
    "label": "Adults",
    "format": "string"
  },
  "change": {
    "label": "Change",
    "format": "string"
  },
  "previousPricePerNight": {
    "label": "Previous Price Per Night",
    "format": "string"
  },
  "searchQuery": {
    "label": "Search Query",
    "format": "string"
  },
  "resolvedLocation": {
    "label": "Resolved Location",
    "format": "string"
  },
  "googleHotelUrl": {
    "label": "Google Hotel Url",
    "format": "string"
  },
  "status": {
    "label": "Status",
    "format": "string"
  },
  "note": {
    "label": "Note",
    "format": "string"
  },
  "source": {
    "label": "Source",
    "format": "string"
  },
  "requestUrl": {
    "label": "Request Url",
    "format": "string"
  },
  "scrapedAt": {
    "label": "Scraped At",
    "format": "string"
  },
  "hotelId": {
    "label": "Hotel Id",
    "format": "string"
  },
  "propertyType": {
    "label": "Property Type",
    "format": "string"
  },
  "propertyTypeCode": {
    "label": "Property Type Code",
    "format": "string"
  },
  "hotelClass": {
    "label": "Hotel Class",
    "format": "string"
  },
  "pricePerNight": {
    "label": "Price Per Night",
    "format": "string"
  },
  "pricesShownIncludeTaxes": {
    "label": "Prices Shown Include Taxes",
    "format": "string"
  },
  "totalBeforeTaxes": {
    "label": "Total Before Taxes",
    "format": "string"
  },
  "taxesAndFees": {
    "label": "Taxes And Fees",
    "format": "string"
  },
  "priceShown": {
    "label": "Price Shown",
    "format": "string"
  },
  "deal": {
    "label": "Deal",
    "format": "string"
  },
  "nights": {
    "label": "Nights",
    "format": "string"
  },
  "stayAsRequested": {
    "label": "Stay As Requested",
    "format": "string"
  },
  "amenities": {
    "label": "Amenities",
    "format": "string"
  },
  "description": {
    "label": "Description",
    "format": "string"
  },
  "latitude": {
    "label": "Latitude",
    "format": "string"
  },
  "longitude": {
    "label": "Longitude",
    "format": "string"
  },
  "checkInTime": {
    "label": "Check In Time",
    "format": "string"
  },
  "checkOutTime": {
    "label": "Check Out Time",
    "format": "string"
  },
  "position": {
    "label": "Position",
    "format": "string"
  },
  "googleQuery": {
    "label": "Google Query",
    "format": "string"
  },
  "googleMapsUrl": {
    "label": "Google Maps Url",
    "format": "string"
  },
  "entityToken": {
    "label": "Entity Token",
    "format": "string"
  },
  "previousTotalPriceText": {
    "label": "Previous Total Price Text",
    "format": "string"
  },
  "previousReturnedAt": {
    "label": "Previous Returned At",
    "format": "string"
  },
  "bookingSources": {
    "label": "Booking Sources",
    "format": "string"
  },
  "bookingSourcesStatus": {
    "label": "Booking Sources Status",
    "format": "string"
  }
}
```

## About this Actor

This example demonstrates how to use [Google Hotels Scraper - Prices, Price Changes & Rate Monitor](https://apify.com/neverempty/google-hotels-scraper.md) with a specific input configuration. Visit the [Actor detail page](https://apify.com/neverempty/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/neverempty/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`).
