> ## Documentation Index
> Fetch the complete documentation index at: https://docs.scrapebadger.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Hotel details

> Hotel details



## OpenAPI

````yaml GET /v1/google/hotels/details
openapi: 3.1.0
info:
  title: ScrapeBadger Google Scraper API
  version: 1.0.0
  description: >-
    Structured JSON APIs for 16 Google product APIs: Search, Maps, News, Hotels,
    Trends, Jobs, Shopping, Patents, Scholar, Autocomplete, Images, Videos,
    Finance, AI Mode, Lens, Products.
servers:
  - url: https://scrapebadger.com
security: []
paths:
  /v1/google/hotels/details:
    get:
      tags:
        - Google Hotels
      summary: Hotel details
      operationId: hotel_details_v1_google_hotels_details_get
      parameters:
        - name: property_token
          in: query
          required: true
          schema:
            type: string
            description: Property token
            title: Property Token
          description: Property token
        - name: check_in
          in: query
          required: true
          schema:
            type: string
            description: YYYY-MM-DD
            title: Check In
          description: YYYY-MM-DD
        - name: check_out
          in: query
          required: true
          schema:
            type: string
            description: YYYY-MM-DD
            title: Check Out
          description: YYYY-MM-DD
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                title: Response Hotel Details V1 Google Hotels Details Get
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    ValidationError:
      properties:
        loc:
          items:
            anyOf:
              - type: string
              - type: integer
          type: array
          title: Location
        msg:
          type: string
          title: Message
        type:
          type: string
          title: Error Type
        input:
          title: Input
        ctx:
          type: object
          title: Context
      type: object
      required:
        - loc
        - msg
        - type
      title: ValidationError

````