{
  "openapi": "3.0.1",
  "info": {
    "title": "Google Hotels Scraper | $4.99 per 1,000 hotels",
    "description": "[$4.99 / 1K] Google Hotels with the full per-vendor price ladder: every booking site quoting each hotel for your dates, with nightly rate, stay total and a bookable deep link. Plus rating, review breakdown by OTA, address, phone and check-in times. No start fee.",
    "version": "0.1",
    "x-build-id": "5O28Ia5kfroaw6jhr"
  },
  "servers": [
    {
      "url": "https://api.apify.com/v2"
    }
  ],
  "paths": {
    "/acts/webdata_labs~google-hotels-scraper/run-sync-get-dataset-items": {
      "post": {
        "operationId": "run-sync-get-dataset-items-webdata_labs-google-hotels-scraper",
        "x-openai-isConsequential": false,
        "summary": "Executes an Actor, waits for its completion, and returns Actor's dataset items in response.",
        "tags": [
          "Run Actor"
        ],
        "requestBody": {
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/inputSchema"
              }
            }
          }
        },
        "parameters": [
          {
            "name": "token",
            "in": "query",
            "required": true,
            "schema": {
              "type": "string"
            },
            "description": "Enter your Apify token here"
          }
        ],
        "responses": {
          "200": {
            "description": "OK"
          }
        }
      }
    },
    "/acts/webdata_labs~google-hotels-scraper/runs": {
      "post": {
        "operationId": "runs-sync-webdata_labs-google-hotels-scraper",
        "x-openai-isConsequential": false,
        "summary": "Executes an Actor and returns information about the initiated run in response.",
        "tags": [
          "Run Actor"
        ],
        "requestBody": {
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/inputSchema"
              }
            }
          }
        },
        "parameters": [
          {
            "name": "token",
            "in": "query",
            "required": true,
            "schema": {
              "type": "string"
            },
            "description": "Enter your Apify token here"
          }
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/runsResponseSchema"
                }
              }
            }
          }
        }
      }
    },
    "/acts/webdata_labs~google-hotels-scraper/run-sync": {
      "post": {
        "operationId": "run-sync-webdata_labs-google-hotels-scraper",
        "x-openai-isConsequential": false,
        "summary": "Executes an Actor, waits for completion, and returns the OUTPUT from Key-value store in response.",
        "tags": [
          "Run Actor"
        ],
        "requestBody": {
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/inputSchema"
              }
            }
          }
        },
        "parameters": [
          {
            "name": "token",
            "in": "query",
            "required": true,
            "schema": {
              "type": "string"
            },
            "description": "Enter your Apify token here"
          }
        ],
        "responses": {
          "200": {
            "description": "OK"
          }
        }
      }
    }
  },
  "components": {
    "schemas": {
      "inputSchema": {
        "type": "object",
        "properties": {
          "searchQueries": {
            "title": "Searches",
            "type": "array",
            "description": "What to search Google Hotels for: `hotels in Lisbon`, a bare place name, a neighbourhood, or a pasted `google.com/travel/search?q=...` URL. Google resolves the place itself, so a plain city name works. Results are deduplicated across searches, so overlapping queries never bill you twice for the same hotel.",
            "items": {
              "type": "string"
            }
          },
          "hotelUrls": {
            "title": "Specific hotels",
            "type": "array",
            "description": "Google Hotels property URLs such as `https://www.google.com/travel/hotels/entity/ChkIy6arwemv3I1AGg0vZy8xMWcxaGY4YndtEAE`, or the bare entity token from one. Use this to re-price a fixed set of properties on a schedule instead of re-running a whole city search. Every URL here is priced in full, price ladder included.",
            "items": {
              "type": "string"
            }
          },
          "checkInDate": {
            "title": "Check-in date",
            "type": "string",
            "description": "The first night of the stay, as `2026-11-10`. Leave empty to price tonight, or use the relative offset below instead — a fixed date goes stale on a schedule."
          },
          "checkOutDate": {
            "title": "Check-out date",
            "type": "string",
            "description": "The morning the stay ends, as `2026-11-12`. If you set a check-in and leave this empty, the number of nights below is used."
          },
          "checkInDaysAhead": {
            "title": "Or check in this many days from today",
            "minimum": 0,
            "maximum": 350,
            "type": "integer",
            "description": "A relative check-in, used only when no check-in date is set. `21` prices a stay starting three weeks out. This is what makes a scheduled run a price monitor: it asks about the same stay shape every time it fires instead of drifting into the past."
          },
          "nights": {
            "title": "Nights",
            "minimum": 1,
            "maximum": 30,
            "type": "integer",
            "description": "Length of the stay, used with either date mode when no check-out date is set.",
            "default": 1
          },
          "adults": {
            "title": "Adults",
            "minimum": 1,
            "maximum": 20,
            "type": "integer",
            "description": "Guests in the booking. Occupancy changes what the vendors quote, so a two-adult and a four-adult search of the same hotel are genuinely different prices.",
            "default": 2
          },
          "childrenAges": {
            "title": "Children's ages",
            "type": "array",
            "description": "One entry per child, each their age at check-in. Many properties price children differently or not at all, which is why Google asks for ages rather than a count.",
            "items": {
              "type": "string"
            }
          },
          "rooms": {
            "title": "Rooms",
            "minimum": 1,
            "maximum": 8,
            "type": "integer",
            "description": "How many rooms the party needs.",
            "default": 1
          },
          "currency": {
            "title": "Currency",
            "type": "string",
            "description": "Three-letter code the prices come back in, such as `USD`, `EUR` or `GBP`. Google converts on its side, so every vendor in the ladder is quoted in the same currency and the numbers are directly comparable.",
            "default": "USD"
          },
          "includePriceLadder": {
            "title": "Include the per-vendor price ladder",
            "type": "boolean",
            "description": "On by default, and the reason to use this Actor. Each hotel gets a second fetch that returns every booking site quoting it for your dates — Booking.com, Expedia, Hotels.com, Trip.com, the hotel's own site and whoever else is live — with each one's nightly rate, stay total and a bookable deep link that already carries your dates. It also brings the address, phone, official website, check-in and check-out times, each OTA's own review score, and what guests keep mentioning. Turn it off for a fast, cheap list of hotels with a single headline price each.",
            "default": true
          },
          "includeVacationRentals": {
            "title": "Include vacation rentals",
            "type": "boolean",
            "description": "Google mixes whole-apartment and single-room rental listings into its hotel results. They are off by default because they are usually quoted by one booking site rather than a ladder of them, and because a rental listed room by room shows up several times for the same address. Turn this on to keep them, each tagged `vacation_rental` in `propertyType`.",
            "default": false
          },
          "maxItems": {
            "title": "Max hotels",
            "minimum": 0,
            "type": "integer",
            "description": "Stop after this many hotels across every search. Set 0 for no cap. The default keeps a first run cheap and quick; a whole city is a few hundred hotels, not the 15,000 Google claims in its result count.",
            "default": 25
          },
          "minRating": {
            "title": "Minimum guest rating",
            "minimum": 0,
            "maximum": 5,
            "type": "integer",
            "description": "Keep only hotels rated at or above this score out of 5. Hotels with no rating yet are excluded when this is set."
          },
          "minStars": {
            "title": "Minimum hotel class",
            "minimum": 0,
            "maximum": 5,
            "type": "integer",
            "description": "Keep only properties of at least this star class. Guest houses and hostels usually carry no class at all and are excluded when this is set."
          },
          "maxNightlyPrice": {
            "title": "Maximum nightly price",
            "minimum": 0,
            "type": "integer",
            "description": "Keep only hotels whose headline nightly rate is at or below this number, in the currency above. Hotels Google shows no price for are excluded when this is set."
          }
        }
      },
      "runsResponseSchema": {
        "type": "object",
        "properties": {
          "data": {
            "type": "object",
            "properties": {
              "id": {
                "type": "string"
              },
              "actId": {
                "type": "string"
              },
              "userId": {
                "type": "string"
              },
              "startedAt": {
                "type": "string",
                "format": "date-time",
                "example": "2025-01-08T00:00:00.000Z"
              },
              "finishedAt": {
                "type": "string",
                "format": "date-time",
                "example": "2025-01-08T00:00:00.000Z"
              },
              "status": {
                "type": "string",
                "example": "READY"
              },
              "meta": {
                "type": "object",
                "properties": {
                  "origin": {
                    "type": "string",
                    "example": "API"
                  },
                  "userAgent": {
                    "type": "string"
                  }
                }
              },
              "stats": {
                "type": "object",
                "properties": {
                  "inputBodyLen": {
                    "type": "integer",
                    "example": 2000
                  },
                  "rebootCount": {
                    "type": "integer",
                    "example": 0
                  },
                  "restartCount": {
                    "type": "integer",
                    "example": 0
                  },
                  "resurrectCount": {
                    "type": "integer",
                    "example": 0
                  },
                  "computeUnits": {
                    "type": "integer",
                    "example": 0
                  }
                }
              },
              "options": {
                "type": "object",
                "properties": {
                  "build": {
                    "type": "string",
                    "example": "latest"
                  },
                  "timeoutSecs": {
                    "type": "integer",
                    "example": 300
                  },
                  "memoryMbytes": {
                    "type": "integer",
                    "example": 1024
                  },
                  "diskMbytes": {
                    "type": "integer",
                    "example": 2048
                  }
                }
              },
              "buildId": {
                "type": "string"
              },
              "defaultKeyValueStoreId": {
                "type": "string"
              },
              "defaultDatasetId": {
                "type": "string"
              },
              "defaultRequestQueueId": {
                "type": "string"
              },
              "buildNumber": {
                "type": "string",
                "example": "1.0.0"
              },
              "containerUrl": {
                "type": "string"
              },
              "usage": {
                "type": "object",
                "properties": {
                  "ACTOR_COMPUTE_UNITS": {
                    "type": "integer",
                    "example": 0
                  },
                  "DATASET_READS": {
                    "type": "integer",
                    "example": 0
                  },
                  "DATASET_WRITES": {
                    "type": "integer",
                    "example": 0
                  },
                  "KEY_VALUE_STORE_READS": {
                    "type": "integer",
                    "example": 0
                  },
                  "KEY_VALUE_STORE_WRITES": {
                    "type": "integer",
                    "example": 1
                  },
                  "KEY_VALUE_STORE_LISTS": {
                    "type": "integer",
                    "example": 0
                  },
                  "REQUEST_QUEUE_READS": {
                    "type": "integer",
                    "example": 0
                  },
                  "REQUEST_QUEUE_WRITES": {
                    "type": "integer",
                    "example": 0
                  },
                  "DATA_TRANSFER_INTERNAL_GBYTES": {
                    "type": "integer",
                    "example": 0
                  },
                  "DATA_TRANSFER_EXTERNAL_GBYTES": {
                    "type": "integer",
                    "example": 0
                  },
                  "PROXY_RESIDENTIAL_TRANSFER_GBYTES": {
                    "type": "integer",
                    "example": 0
                  },
                  "PROXY_SERPS": {
                    "type": "integer",
                    "example": 0
                  }
                }
              },
              "usageTotalUsd": {
                "type": "number",
                "example": 0.00005
              },
              "usageUsd": {
                "type": "object",
                "properties": {
                  "ACTOR_COMPUTE_UNITS": {
                    "type": "integer",
                    "example": 0
                  },
                  "DATASET_READS": {
                    "type": "integer",
                    "example": 0
                  },
                  "DATASET_WRITES": {
                    "type": "integer",
                    "example": 0
                  },
                  "KEY_VALUE_STORE_READS": {
                    "type": "integer",
                    "example": 0
                  },
                  "KEY_VALUE_STORE_WRITES": {
                    "type": "number",
                    "example": 0.00005
                  },
                  "KEY_VALUE_STORE_LISTS": {
                    "type": "integer",
                    "example": 0
                  },
                  "REQUEST_QUEUE_READS": {
                    "type": "integer",
                    "example": 0
                  },
                  "REQUEST_QUEUE_WRITES": {
                    "type": "integer",
                    "example": 0
                  },
                  "DATA_TRANSFER_INTERNAL_GBYTES": {
                    "type": "integer",
                    "example": 0
                  },
                  "DATA_TRANSFER_EXTERNAL_GBYTES": {
                    "type": "integer",
                    "example": 0
                  },
                  "PROXY_RESIDENTIAL_TRANSFER_GBYTES": {
                    "type": "integer",
                    "example": 0
                  },
                  "PROXY_SERPS": {
                    "type": "integer",
                    "example": 0
                  }
                }
              }
            }
          }
        }
      }
    }
  }
}