Google Hotels Property Details API

SerpApi is able to scrape, extract, and make sense of Google Hotels Property Details. Property details can contain name, address, phone, prices, typical_price_range, nearby_places and many more.

API Parameters

property_token

Required

Parameter is used to get property details which consists of name, address, phone, prices, nearby places, and etc. You can find property_token from Google Hotels Properties API.

JSON structure overview

{
  ...
  "type": "String - Type of property (e.g. hotel or vacation rental)",
  "name": "String - Name of the property",
  "description": "String - Description of the property",
  "link": "String - URL of the property's website",
  "address": "String - Address of the property",
  "phone": "String - Phone of the property",
  "phone_link": "String - Phone link of the property, e.g. tel:+61234567890",
  "gps_coordinates": {
    "latitude": "Float - Latitude of the GPS Coordinates",
    "longitude": "Float - Langitude of the GPS Coordinates"
  },
  "check_in_time": "String - Check-in time of the property (e.g. 3:00 PM)",
  "check_out_time": "String - Check-out time of the property (e.g. 12:00 PM)",
  "rate_per_night": {
    "lowest": "String - Lowest rate per night formatted with currency",
    "extracted_lowest": "Float - Extracted lowest rate per night",
    "before_taxes_fees": "String - Rate per night before taxes and fees formatted with currency",
    "extracted_before_taxes_fees": "Float - Extracted rate per night before taxes and fees"
  },
  "total_rate": {
    "lowest": "String - Lowest total rate for the entire trip formatted with currency",
    "extracted_lowest": "Float - Extracted lowest total rate for the entire trip",
    "before_taxes_fees": "String - Total rate before taxes and fees for the entire trip formatted with currency",
    "extracted_before_taxes_fees": "Float - Extracted total rate before taxes and fees for the entire trip"
  },
  "featured_prices": [
    {
      "source": "String - Source of the site that list the price",
      "link": "String - URL of the booking site",
      "logo": "String - URL of the source's logo",
      "official": "Boolean - <code>True</code> of the source is the official booking site",
      "rooms": [
        {
          "name": "String - Name of the room",
          "images": "Array - URLs of the room images",
          "link": "String - URL to the booking site for the room",
          "num_guests": "Integer - Number of guests the room can accommodate",
          "rate_per_night": {
            "lowest": "String - Lowest rate per night formatted with currency",
            "extracted_lowest": "Float - Extracted lowest rate per night",
            "before_taxes_fees": "String - Rate per night before taxes and fees formatted with currency",
            "extracted_before_taxes_fees": "Float - Extracted rate per night before taxes and fees"
          },
          "total_rate": {
            "lowest": "String - Lowest total rate formatted with currency",
            "extracted_lowest": "Float - Extracted lowest total rate",
            "before_taxes_fees": "String - Total rate before taxes and fees formatted with currency",
            "extracted_before_taxes_fees": "Float - Extracted total rate before taxes and fees"
          }
        }
      ],
      // Based on the default room selected for the price
      "num_guests": "Integer - Number of guests the room can accommodate",
      "rate_per_night": {
        "lowest": "String - Lowest rate per night formatted with currency",
        "extracted_lowest": "Float - Extracted lowest rate per night",
        "before_taxes_fees": "String - Rate per night before taxes and fees formatted with currency",
        "extracted_before_taxes_fees": "Float - Extracted rate per night before taxes and fees"
      },
      "total_rate": {
        "lowest": "String - Lowest total rate formatted with currency",
        "extracted_lowest": "Float - Extracted lowest total rate",
        "before_taxes_fees": "String - Total rate before taxes and fees formatted with currency",
        "extracted_before_taxes_fees": "Float - Extracted total rate before taxes and fees"
      }
    }
  ],
  "prices": [
    {
      "source": "String - Source of the site that list the price",
      "link": "String - URL of the booking site",
      "logo": "String - URL of the source's logo",
      "official": "Boolean - <code>True</code> of the source is the official booking site",
      "num_guests": "String - Number of guests the room can accommodate",
      "original_rate_per_night": {
        "lowest": "String - Lowest original rate per night formatted with currency",
        "extracted_lowest": "Float - Extracted lowest original rate per night",
        "before_taxes_fees": "String - Original rate per night before taxes and fees formatted with currency",
        "extracted_before_taxes_fees": "Float - Extracted original rate per night before taxes and fees"
      },
      "original_total_rate": {
        "lowest": "String - Lowest original total rate per night formatted with currency",
        "extracted_lowest": "Float - Extracted lowest original total rate per night",
        "before_taxes_fees": "String - Original total rate per night before taxes and fees formatted with currency",
        "extracted_before_taxes_fees": "Float - Extracted original total rate per night before taxes and fees"
      },
      "discount_remarks": "Array - List of remarks about discount in text",
      "rate_per_night": {
        "lowest": "String - Lowest rate per night formatted with currency",
        "extracted_lowest": "Float - Extracted lowest rate per night",
        "before_taxes_fees": "String - Rate per night before taxes and fees formatted with currency",
        "extracted_before_taxes_fees": "Float - Extracted rate per night before taxes and fees"
      },
      "total_rate": {
        "lowest": "String - Lowest total rate formatted with currency",
        "extracted_lowest": "Float - Extracted lowest total rate",
        "before_taxes_fees": "String - Total rate before taxes and fees formatted with currency",
        "extracted_before_taxes_fees": "Float - Extracted total rate before taxes and fees"
      },
      "free_cancellation": "Boolean - Indicate if free cancellation is available",
      "free_cancellation_until_date": "String - The last day on which a reservation can be freely cancelled (e.g Aug 10)",
      "free_cancellation_until_time": "String - The last hour on which a reservation can be freely cancelled (e.g 6:00pm)",
    }
  ],
  "typical_price_range": {
    "lowest": "String - Lowest price of the typical price range formmated with currency",
    "extracted_lowest": "Integer - Extracted lowest price of the typical price range",
    "highest": "String - Highest price of the typical price range formmated with currency",
    "extracted_highest": "Integer - Extracted highest price of the typical price range",
  },
  "deal": "String - active deal of the property",
  "deal_description": "String - Description of the deal",
  "nearby_places": [
    {
      "category": "String - Category of the place, e.g. Point of Interest, Restaurant, and etc",
      "name": "String - Name of the place",
      "link": "String - Google search URL of the place",
      "thumbnail": "String - Thumbnail of the place",
      "rating": "Float - Rating of the place",
      "reviews": "Integer - Total reviews of the place",
      "description": "String - Description of the place",
      "transportations": [
        {
          "type": "String - Type of transportation (e.g. Taxi, Walking, Public transport)",
          "duration": "String - Travel duration (e.g. 30 min)"
        }
      ],
      "gps_coordinates": {
        "latitude": "Float - Latitude of the GPS Coordinates",
        "longitude": "Float - Langitude of the GPS Coordinates"
      },
    }
  ],
  "hotel_class": "String - Hotel class of the property (e.g. 5-star hotel)",
  "extracted_hotel_class": "Integer - Extracted hotel class of the property (e.g. 5)",
  "images": [
    {
      "thumbnail": "String - URL of the thumbnail",
      "original_image": "String - URL of the original image"
    }
  ],
  "overall_rating": "Float - Overall rating for the property",
  "reviews": "Integer - Total reviews for the property",
  "ratings": [
    {
      "stars": "Integer - Number of stars from 1 to 5",
      "count": "Integer - Total number of reviews for given star"
    }
  ],
  "location_rating": "Float - Location rating of the property (e.g. 1.8 is Bad location, 4.8 is excellent location)",
  "reviews_breakdown": [
    {
      "name": "String - Name of the review breakdown category",
      "description": "String - Description of the category",
      "total_mentioned": "Integer - Total mentioned about the category",
      "positive": "Integer - Total amount of positivity",
      "negative": "Integer - Total amount of negativity",
      "neutral": "Integer - Total amount of neutrality"
    }
  ],
  "amenities": "Array - Amenities provided by the property (e.g. Free Wi-Fi, Free parking, Hot tub, Pools, Airport shuttle and many more)",
  "excluded_amenities": "Array - Excluded amenities (e.g. No air conditioning, No airport shuttle, No beach access, Not pet-friendly and many more)",
  "essential_info": "Array - Essential info of the property (e.g. Entire villa, Sleeps 4, 9 bedrooms, 7 bathrooms",
  "eco_certified": "Boolean - Indicate if the property is Eco-certified"
  ...
}

Example with q: Bali Resorts and property_token: ChcI9uq9hrWO2OtjGgsvZy8xMjJ0YzFteBAB (Hilton Bali Resort)

Example with q: Bali Resorts and property_token: ChcI9uq9hrWO2OtjGgsvZy8xMjJ0YzFteBAB (Hilton Bali Resort)

JSON Example

{
  ...
  "type": "hotel",
  "name": "Hilton Bali Resort",
  "description": "This sprawling, upscale resort on a lush cliff is 3 km from Geger Beach and 15 km from Garuda Wisnu Kencana.Posh rooms offer Wi-Fi, minibars and flat-screen TVs, plus tea and coffeemaking facilities and balconies with ocean or garden views. Suites add executive lounge access, which welcomes kids age 12 and over; some have kitchens. Villas have private pools, gazebos and living areas. Room service is available.Amenities include multiple dining options, beach access and an outdoor pool, plus a gym, a spa, indoor/outdoor events spaces, tennis courts and an amphitheater.",
  "link": "https://www.hilton.com/en/hotels/dpsbahi-hilton-bali-resort/?SEO_id=GMB-APAC-HI-DPSBAHI",
  "address": "Jl. Raya Nusa Dua Selatan, Benoa, Kec. Kuta Sel., Kabupaten Badung, Bali 80361, Indonesia",
  "phone": "+62 361 773377",
  "phone_link": "tel:+62361773377",
  "gps_coordinates": {
    "latitude": -8.8256848,
    "longitude": 115.21867449999999
  },
  "check_in_time": "3:00 PM",
  "check_out_time": "12:00 PM",
  "rate_per_night": {
    "lowest": "$203",
    "extracted_lowest": 203,
    "before_taxes_fees": "$168",
    "extracted_before_taxes_fees": 168
  },
  "total_rate": {
    "lowest": "$610",
    "extracted_lowest": 610,
    "before_taxes_fees": "$504",
    "extracted_before_taxes_fees": 504
  },
  "featured_prices": [
    {
      "source": "Hilton Bali Resort",
      "link": "https://www.google.com/aclk?sa=l&ai=CuWm0w6bAZfzWGLKV_bMP0_W8wAOFzcWPYZSFp5TkDJvT3q-yIQgKEAEg6ZDtigEoBGDJBqABvvDi2gHIAQiqBFZP0COOV9J7ze9nwlGlJlRpqqfEI8dwpynSe0wxXVs4zP3yCWvPnE3Sul4D-i1Ap9DLD8sO7Ov11pO4G2BkBurfzsnFPtiiAHw0U5Yyy4hwPxtxA2mEJMAEmOGMpLUDiAWBi-yXLcAFkgGgBmWQBwGoB-u4sQKoB6a-G6gHuZqxAqgH89EbqAfu0huoB_-csQKoB8rcG6gHkq-xAqgHu6SxAqgHkqaxAqgH2KaxAqgHyqmxAqgHmbWxAqgH3rWxAqgH26qxAqgH0KqxAqgH3LCxAqgH6rGxAqgHqrixAqgHlLixAqgH7LixAqgHvrexAqgHsruxAqgHs7uxAqgHw72xAqgHxL2xAqAIlJimBLAIAcAIAdIIHxABMgKAQDoE4GGCQEIBAUjeuNYyUAlYvMTshO6ThAPICawB-AkBogr-BQoKMjAyNC0wMi0wNhADGgJVUyICZW4pGVR_sL2jNVMyBmhpbHRvbjgCSAFSD1QyUkdfX1BHQk9OMV9fMl1gvPFKZeAOy0loAHIDSURSggFhCgRUMlJHGhIKAkMxEgxISUxUT04tRFBTQkEaEAoCQzISCjk1ODQ2NTIuMDAaCgoCQzMSBFQyUkcaDAoCQzQSBlBHQk9OMRoHCgJDNRIBMjICCAJCDFQyUkdfX1BHQk9OMaABAbABAbgBAcgBsYLaL-ABAOgBAfABAfgBAKACAKgCzAGoAuUDsAK-8OLaAbgCgYvsly3gAgDqAgNVU0T6AokEaHR0cHM6Ly9saW5rY2VudGVydXMuZGVyYnlzb2Z0Y2EuY29tL2RwbGF0Zm9ybS1saW5rY2VudGVyL2Jvb2tpbmcuaHRtP2hvdGVsQ29kZT1ISUxUT04tRFBTQkEmcHJvdmlkZXJIb3RlbENvZGU9RFBTQkEmY2hlY2tJbkRhdGU9MjAyNC0wMi0wNiZjaGVja091dERhdGU9MjAyNC0wMi0wOSZpZGVudGlmaWVyPWdvb2dsZS1oaWx0b24mcHJpY2U9OTU4NDY1Mi4wMCZyb29tVHlwZUNvZGU9VDJSRyZyYXRlUGxhbkNvZGU9UEdCT04xJmN1cnJlbmN5PUlEUiZsYW5ndWFnZT1lbiZ1c2VyQ291bnRyeT1VUyZkYXRlVHlwZT1zZWxlY3RlZCZ0ZXN0Q2xpY2s9ZmFsc2Umc2l0ZXR5cGU9bG9jYWx1bml2ZXJzYWwmb2NjdXBhbmN5PTImcGFydG5lcklkPWhpbHRvbiZjYW1wYWlnbmlkPTEyMTI5NjAwODk3JnJhdGVSdWxlSWQ9JnVzZXJsaXN0aWQ9JmlmRGVmYXVsdERhdGU9c2VsZWN0ZWQmaXNQcm9tb3RlZD1mYWxzZSZpc1J1bGVJZHNDbG9zZWQ9ZmFsc2Umc19pc19hZD10cnVlJmFkVHlwZT0xJmFkdWx0cz0yJmNoaWxkcmVuPTCKAwDoCgGQCwOYCwHQCxroDBOaDQEaqg0CVVPIDQGCFAQIehIA0BUBmBYB-BYBgBcBkhcJEgcIARADGLACuhcCSAE&ase=2&gclid=EAIaIQobChMIvMTshO6ThAMVskp_AB3TOg84EAoYASABEgJ40fD_BwE&sig=AOD64_07zh-yMCuS-sQX5P9D3YAMe2y6FQ&adurl=https://linkcenterus.derbysoftca.com/dplatform-linkcenter/booking.htm?hotelCode%3DHILTON-DPSBA%26providerHotelCode%3DDPSBA%26checkInDate%3D2024-02-06%26checkOutDate%3D2024-02-09%26identifier%3Dgoogle-hilton%26price%3D9584652.00%26roomTypeCode%3DT2RG%26ratePlanCode%3DPGBON1%26currency%3DIDR%26language%3Den%26userCountry%3DUS%26dateType%3Dselected%26testClick%3Dfalse%26sitetype%3Dlocaluniversal%26occupancy%3D2%26partnerId%3Dhilton%26campaignid%3D12129600897%26rateRuleId%3D%26userlistid%3D%26ifDefaultDate%3Dselected%26isPromoted%3Dfalse%26isRuleIdsClosed%3Dfalse%26s_is_ad%3Dtrue%26adType%3D1%26adults%3D2%26children%3D0",
      "logo": "https://www.gstatic.com/travel-hotels/branding/75ce5d87-7090-4e37-a9b2-57848aa21d9f.png",
      "official": true,
      "rooms": [
        {
          "name": "KING GUEST RM GARDEN VIEW",
          "images": [
            "https://lh3.googleusercontent.com/hrppk/AJw67y2FIrtgFxWUqP0E9TXWsiQGg9sflnTG9kSDgWU5tRyqGYCwO_vdYLSOCyKoDOO9mWxBcx1ezBDrAXMHFGTkbqWGYk3htpDrjhUsOhvfsR32D1rOaSjl1dyz0y8",
            "https://lh3.googleusercontent.com/hrppk/AJw67y0oCASV0NtvzuEZnU5PMsS0q28bOpGGT_GErKy0g60U6cjDUyu8wFf8lOMfknRscKm2IiqAdTXvxmBspsiXCG07mL3qgAntoJ-NYNzewUafXyZCCw4AkUTPTKo0",
            "https://lh3.googleusercontent.com/hrppk/AJw67y0iTjcN4PW2apIqF2drElFj1hK6q8Zw6GSv9yWCSOu5c9YOw68ooGrWVo2mvl2MAC-FBPWLzSkQd7pA9fuezIShF7ROx5y7yweuN6J_zco2JU4kDi3Y36zSzrxJ",
            "https://lh3.googleusercontent.com/hrppk/AJw67y1432Eixx3GylUY3MgRmYU0H2X1OfgrwQIhXDf2QjHzr8M0u1DDTCUyWlYTV4m8UAxuHI6bRHZkD5r3VH_CgtsdKnQbINutIbgpqRW7MScokCX7S51IGbwZgHOI"
          ],
          "link": "https://www.google.com/aclk?sa=l&ai=CLm2mw6bAZfzWGLKV_bMP0_W8wAOFzcWPYZSFp5TkDJvT3q-yIQgKEAEg6ZDtigEoBGDJBqABvvDi2gHIAQiqBFZP0COOV9J7ze9nwlGlJlRpqqfEI8dwpynSe0wxXVs4zP3yCWvPnE3Sul4D-i1Ap9DLD8sO7Ov11pO4G2BkBurfzsnFPtiiAHw0U5Yyy4hwPxtxA2mEJMAEmOGMpLUDiAWBi-yXLcAFkgGgBmWQBwGoB-u4sQKoB6a-G6gHuZqxAqgH89EbqAfu0huoB_-csQKoB8rcG6gHkq-xAqgHu6SxAqgHkqaxAqgH2KaxAqgHyqmxAqgHmbWxAqgH3rWxAqgH26qxAqgH0KqxAqgH3LCxAqgH6rGxAqgHqrixAqgHlLixAqgH7LixAqgHvrexAqgHsruxAqgHs7uxAqgHw72xAqgHxL2xAqAIlJimBLAIAcAIAtIIHxABMgKAQDoE4GGCQEIBAUjeuNYyUAlYvMTshO6ThAPICawB-AkBogqBBgoKMjAyNC0wMi0wNhADGgJVUyICZW4pGVR_sL2jNVMyBmhpbHRvbjgCSAFSD0sxUkdfX1BHQk9OMV9fMl2h9vtDZTWm00JoAHIDVVNEggFhCgRLMVJHGhIKAkMxEgxISUxUT04tRFBTQkEaEAoCQzISCjk1ODQ2NTIuMDAaCgoCQzMSBEsxUkcaDAoCQzQSBlBHQk9OMRoHCgJDNRIBMjICCAJCDEsxUkdfX1BHQk9OMaABAbABArgBAcgBsYLaL-ABAOgBAfABAfgBAIACAqACAKgCzAGoAuUDsAK-8OLaAbgCgYvsly3gAgDqAgNVU0T6AokEaHR0cHM6Ly9saW5rY2VudGVydXMuZGVyYnlzb2Z0Y2EuY29tL2RwbGF0Zm9ybS1saW5rY2VudGVyL2Jvb2tpbmcuaHRtP2hvdGVsQ29kZT1ISUxUT04tRFBTQkEmcHJvdmlkZXJIb3RlbENvZGU9RFBTQkEmY2hlY2tJbkRhdGU9MjAyNC0wMi0wNiZjaGVja091dERhdGU9MjAyNC0wMi0wOSZpZGVudGlmaWVyPWdvb2dsZS1oaWx0b24mcHJpY2U9OTU4NDY1Mi4wMCZyb29tVHlwZUNvZGU9SzFSRyZyYXRlUGxhbkNvZGU9UEdCT04xJmN1cnJlbmN5PVVTRCZsYW5ndWFnZT1lbiZ1c2VyQ291bnRyeT1VUyZkYXRlVHlwZT1zZWxlY3RlZCZ0ZXN0Q2xpY2s9ZmFsc2Umc2l0ZXR5cGU9bG9jYWx1bml2ZXJzYWwmb2NjdXBhbmN5PTImcGFydG5lcklkPWhpbHRvbiZjYW1wYWlnbmlkPTEyMTI5NjAwODk3JnJhdGVSdWxlSWQ9JnVzZXJsaXN0aWQ9JmlmRGVmYXVsdERhdGU9c2VsZWN0ZWQmaXNQcm9tb3RlZD1mYWxzZSZpc1J1bGVJZHNDbG9zZWQ9ZmFsc2Umc19pc19hZD10cnVlJmFkVHlwZT0xJmFkdWx0cz0yJmNoaWxkcmVuPTCKAwDoCgGQCwOYCwHQCxroDBOaDQEaqg0CVVPIDQGCFAQIehIA0BUBmBYB-BYBgBcBkhcJEgcIARADGLACuhcCSAE&ase=2&gclid=EAIaIQobChMIvMTshO6ThAMVskp_AB3TOg84EAoYASACEgIbmPD_BwE&sig=AOD64_1Y3tQxTps6Mb1CPB2wQ2LuQF3znQ&adurl=https://linkcenterus.derbysoftca.com/dplatform-linkcenter/booking.htm?hotelCode%3DHILTON-DPSBA%26providerHotelCode%3DDPSBA%26checkInDate%3D2024-02-06%26checkOutDate%3D2024-02-09%26identifier%3Dgoogle-hilton%26price%3D9584652.00%26roomTypeCode%3DK1RG%26ratePlanCode%3DPGBON1%26currency%3DUSD%26language%3Den%26userCountry%3DUS%26dateType%3Dselected%26testClick%3Dfalse%26sitetype%3Dlocaluniversal%26occupancy%3D2%26partnerId%3Dhilton%26campaignid%3D12129600897%26rateRuleId%3D%26userlistid%3D%26ifDefaultDate%3Dselected%26isPromoted%3Dfalse%26isRuleIdsClosed%3Dfalse%26s_is_ad%3Dtrue%26adType%3D1%26adults%3D2%26children%3D0",
          "num_guests": 2,
          "rate_per_night": {
            "lowest": "$203",
            "extracted_lowest": 203,
            "before_taxes_fees": "$168",
            "extracted_before_taxes_fees": 168
          },
          "total_rate": {
            "lowest": "$610",
            "extracted_lowest": 610,
            "before_taxes_fees": "$504",
            "extracted_before_taxes_fees": 504
          }
        },
        ...
      ],
      "num_guests": 2,
      "original_rate_per_night": {
        "lowest": "$219",
        "extracted_lowest": 219,
        "before_taxes_fees": "$181",
        "extracted_before_taxes_fees": 181
      },
      "original_total_rate": {
        "lowest": "$656",
        "extracted_lowest": 656,
        "before_taxes_fees": "$542",
        "extracted_before_taxes_fees": 542
      },
      "discount_remarks": [
        "7% off"
      ],
      "rate_per_night": {
        "lowest": "$203",
        "extracted_lowest": 203,
        "before_taxes_fees": "$168",
        "extracted_before_taxes_fees": 168
      },
      "total_rate": {
        "lowest": "$610",
        "extracted_lowest": 610,
        "before_taxes_fees": "$504",
        "extracted_before_taxes_fees": 504
      }
    },
    {
      "source": "Expedia.com",
      "link": "https://www.google.com/aclk?sa=l&ai=CQDSgw6bAZfzWGLKV_bMP0_W8wAOqzc36c9rK1aOrEty29saZQggKEAIg6ZDtigEoBGDJBqABrOif-gLIAQiqBFZP0GH2I9N7zu9nwlGlJlRpquyISZVypynSe0wxXVs4zP3ycB6tnU7Sul4D-i1Ap9DLD8sO_e3on664S2hDatbf7MjFPtiiABZMOqENy4hwPxtadTqWGsAEjO3_j-MEiAX8r--hTcAFkgGgBmWQBwGoB-u4sQKoB6a-G6gHuZqxAqgH89EbqAfu0huoB_-csQKoB8rcG6gHkq-xAqgHu6SxAqgHkqaxAqgH2KaxAqgHyqmxAqgHmbWxAqgH3rWxAqgH26qxAqgH0KqxAqgH3LCxAqgH6rGxAqgHqrixAqgHlLixAqgH7LixAqgHvrexAqgHsruxAqgHs7uxAqgHw72xAqgHxL2xAqAIlJimBLAIAcAIAdIIHxABMgKAQDoE4GGCQEIBAUjeuNYyUAlYvMTshO6ThAPICawB-AkBogqKBgoKMjAyNC0wMi0wNhADGgJVUyICZW4pGVR_sL2jNVMyD0V4cGVkaWFTdGFuZGFyZDgCSAFSCTI0NjA0MDgxOV2FmwdEZezR40JoAHIDVVNEggFvCgkyMDE3OTgyMTEaPAoCQzISNnJhdGVwbGFuaWQ9MjQ2MDQwODE5Jm1wbT0yNCZtcG49MjAxNzk4MjExJm1wbz1FQyZtcHA9MRoKCgJDMxIEdHJ1ZRoJCgJDNBIDVVNEMgIIAkIJMjQ2MDQwODE5igEOYmV4X3VzX2Rlc2t0b3CgAQGwAQG4AQHIAeWA2i_gAQHoAQLwAQH4AQGgAgCoAswBqALlA7ACrOif-gK4Avyv76FN4AIA6gIDVVNE-gLzA2h0dHBzOi8vd3d3LmV4cGVkaWEuY29tL0hvdGVsLVNlYXJjaD9zZWxlY3RlZD0zNDUzOSZzdGFydERhdGU9MjAyNC0wMi0wNiZlbmREYXRlPTIwMjQtMDItMDkmTURQQ0lEPVVTLk1FVEEuSFBBLkhPVEVMLUNPUkVTRUFSQ0gtZGVza3RvcC5IT1RFTCZsYW5naWQ9MTAzMyZhZHVsdHM9MiZjaGlsZHJlbj0mTURQRFRMPUhUTC4zNDUzOS4yMDI0MDIwNi4yMDI0MDIwOS5EREYuMS5DSUQuMjA3NDA1NjA4OTIuQVVESUQuLlJSSUQuYmV4X3VzX2Rlc2t0b3AmbWN0Yz0xMCZjdD1ob3RlbCZleHBfY3Vycj1VU0QmZXhwX2RwPTY1Ni4zNCZleHBfdHg9MTEzLjkxJmV4cF9wZz1nb29nbGUmbGFuZ2lkPWVuJmFkPTImdHA9JnV0bV9zb3VyY2U9Z29vZ2xlJnV0bV9tZWRpdW09Y3BjJnV0bV90ZXJtPTM0NTM5JnV0bV9jb250ZW50PWxvY2FsdW5pdmVyc2FsJnV0bV9jYW1wYWlnbj1Ib3RlbEFkcyZyYXRlcGxhbmlkPTI0NjA0MDgxOSZtcG09MjQmbXBuPTIwMTc5ODIxMSZtcG89RUMmbXBwPTGKAwDoCgGQCwOYCwHQCxroDBOaDQEaqg0CVVPIDQGCFAQIehIA0BUBmBYB-BYBgBcBkhcJEgcIARADGLACuhcCSAE&ase=2&gclid=EAIaIQobChMIvMTshO6ThAMVskp_AB3TOg84EAoYAiABEgI7RPD_BwE&sig=AOD64_0dyFFX3mrkuwU-8B8zXyJaMTdv5A&adurl=https://www.expedia.com/Hotel-Search?selected%3D34539%26startDate%3D2024-02-06%26endDate%3D2024-02-09%26MDPCID%3DUS.META.HPA.HOTEL-CORESEARCH-desktop.HOTEL%26langid%3D1033%26adults%3D2%26children%3D%26MDPDTL%3DHTL.34539.20240206.20240209.DDF.1.CID.20740560892.AUDID..RRID.bex_us_desktop%26mctc%3D10%26ct%3Dhotel%26exp_curr%3DUSD%26exp_dp%3D656.34%26exp_tx%3D113.91%26exp_pg%3Dgoogle%26langid%3Den%26ad%3D2%26tp%3D%26utm_source%3Dgoogle%26utm_medium%3Dcpc%26utm_term%3D34539%26utm_content%3Dlocaluniversal%26utm_campaign%3DHotelAds%26rateplanid%3D246040819%26mpm%3D24%26mpn%3D201798211%26mpo%3DEC%26mpp%3D1",
      "logo": "https://www.gstatic.com/travel-hotels/branding/ac238c97-1652-4830-8da8-bb8d8883af88.png",
      "remarks": [
        "Get Instant Confirmation",
        "Read Real Guest Reviews"
      ],
      "rooms": [
        {
          "name": "Room, 1 King Bed, Garden View",
          "images": [
            "https://lh3.googleusercontent.com/hrppk/AJw67y317fZZ3Ez5bPUxVOF9lKsrsjRVz566YoUpUzfta3xx2kylHKV_TA_cSL7iDgAL5GyeoS1MQHnkgmA-g5xV0MTFPNVW5vDXZ5tVZwRSE487EJoTt7kOlhpyUP_IGRD4nttwyOOqF2Gf3DSP6raKQaG7xQ",
            "https://lh3.googleusercontent.com/hrppk/AJw67y33_JBYYA_oCjs9AQ3mWXqIUvd2YZox4C5n4XTcs5FG2PzKCkd-A9vsbOnihXtXLH_wtuGkt84i5fX4OuZHyq6S1geL0AKoc0VNmH9i_PLgFGYlaT_CLlaDMV6lYqNAzUQy4cnajOC0TmddeOnVj1uV",
            "https://lh3.googleusercontent.com/hrppk/AJw67y1pPDAJzPknJCYp6OH-dwt0n-vMWSNpsI1oQGTREzXmylLGhYjG2jCau69U913D1CxGF-ZPA82jL2fHhzLugOOtAi_NuxQBWz886W9SozTRsoQcaRmgJb85xlqTNd_wOdbRfYhrdzTm6lxB3xqzZOz0vw",
            "https://lh3.googleusercontent.com/hrppk/AJw67y26jIEG7oKL7poF2wd3emjGN8zwx_PxR4FHywiCOa0XCona7hR_3lfA0U8kYT8fd8ObblE7PlGYUwBmh-zRtCP4vCoi_ddq3lHqhEnJGV7u3om-3EZi-bHyoaxMeSNLzpPyVEWKr1YIrMUQTtNYJsDU"
          ],
          "link": "https://www.google.com/aclk?sa=l&ai=CTzfzw6bAZfzWGLKV_bMP0_W8wAOqzc36c9rK1aOrEty29saZQggKEAIg6ZDtigEoBGDJBqABrOif-gLIAQiqBFZP0GH2I9N7zu9nwlGlJlRpquyISZVypynSe0wxXVs4zP3ycB6tnU7Sul4D-i1Ap9DLD8sO_e3on664S2hDatbf7MjFPtiiABZMOqENy4hwPxtadTqWGsAEjO3_j-MEiAX8r--hTcAFkgGgBmWQBwGoB-u4sQKoB6a-G6gHuZqxAqgH89EbqAfu0huoB_-csQKoB8rcG6gHkq-xAqgHu6SxAqgHkqaxAqgH2KaxAqgHyqmxAqgHmbWxAqgH3rWxAqgH26qxAqgH0KqxAqgH3LCxAqgH6rGxAqgHqrixAqgHlLixAqgH7LixAqgHvrexAqgHsruxAqgHs7uxAqgHw72xAqgHxL2xAqAIlJimBLAIAcAIAtIIHxABMgKAQDoE4GGCQEIBAUjeuNYyUAlYvMTshO6ThAPICawB-AkBogqgBgoKMjAyNC0wMi0wNhADGgJVUyICZW4pGVR_sL2jNVMyD0V4cGVkaWFTdGFuZGFyZDgCSAFSAF2FmwdEZezR40JoAHIDVVNEggGAAQoJMjAxNzk4MjExGjwKAkMyEjZyYXRlcGxhbmlkPTI0NjA0MDgxOSZtcG09MjQmbXBuPTIwMTc5ODIxMSZtcG89RUMmbXBwPTEaCgoCQzMSBHRydWUaCQoCQzQSA1VTRBoPCgJDMRIJMjAxNzk4MjExMgIIAkIJMjQ2MDQwODE5igEOYmV4X3VzX2Rlc2t0b3CgAQGwAQK4AQHIAeWA2i_gAQHoAQLwAQH4AQGAAgKgAgCoAswBqALlA7ACrOif-gK4Avyv76FN4AIA6gIDVVNE-gL9A2h0dHBzOi8vd3d3LmV4cGVkaWEuY29tL0hvdGVsLVNlYXJjaD9zZWxlY3RlZD0zNDUzOSZzdGFydERhdGU9MjAyNC0wMi0wNiZlbmREYXRlPTIwMjQtMDItMDkmTURQQ0lEPVVTLk1FVEEuSFBBLkhPVEVMLUNPUkVTRUFSQ0gtUk9PTUJVTkRMRS1kZXNrdG9wLkhPVEVMJmxhbmdpZD0xMDMzJmFkdWx0cz0yJmNoaWxkcmVuPSZNRFBEVEw9SFRMLjM0NTM5LjIwMjQwMjA2LjIwMjQwMjA5LkRERi4xLkNJRC4yMDc0MDU2MDg5Mi5BVURJRC4uUlJJRC5iZXhfdXNfZGVza3RvcCZtY3RjPTEwJmN0PXJvb20mZXhwX2N1cnI9VVNEJmV4cF9kcD02NTYuMzQmZXhwX3R4PTExMy45MSZleHBfcGc9Z29vZ2xlJmxhbmdpZD1lbiZhZD0yJnRwPSZ1dG1fc291cmNlPWdvb2dsZSZ1dG1fbWVkaXVtPWNwYyZ1dG1fdGVybT0zNDUzOSZ1dG1fY29udGVudD1sb2NhbHVuaXZlcnNhbCZ1dG1fY2FtcGFpZ249SG90ZWxBZHMmcmF0ZXBsYW5pZD0yNDYwNDA4MTkmbXBtPTI0Jm1wbj0yMDE3OTgyMTEmbXBvPUVDJm1wcD0xigMA6AoBkAsDmAsB0Asa6AwTmg0BGqoNAlVTyA0BghQECHoSANAVAZgWAfgWAYAXAZIXCRIHCAEQAxiwAroXAkgB&ase=2&gclid=EAIaIQobChMIvMTshO6ThAMVskp_AB3TOg84EAoYAiACEgJAzfD_BwE&sig=AOD64_1aLV96TdOBGgIuXe3eackKpRzKYA&adurl=https://www.expedia.com/Hotel-Search?selected%3D34539%26startDate%3D2024-02-06%26endDate%3D2024-02-09%26MDPCID%3DUS.META.HPA.HOTEL-CORESEARCH-ROOMBUNDLE-desktop.HOTEL%26langid%3D1033%26adults%3D2%26children%3D%26MDPDTL%3DHTL.34539.20240206.20240209.DDF.1.CID.20740560892.AUDID..RRID.bex_us_desktop%26mctc%3D10%26ct%3Droom%26exp_curr%3DUSD%26exp_dp%3D656.34%26exp_tx%3D113.91%26exp_pg%3Dgoogle%26langid%3Den%26ad%3D2%26tp%3D%26utm_source%3Dgoogle%26utm_medium%3Dcpc%26utm_term%3D34539%26utm_content%3Dlocaluniversal%26utm_campaign%3DHotelAds%26rateplanid%3D246040819%26mpm%3D24%26mpn%3D201798211%26mpo%3DEC%26mpp%3D1",
          "num_guests": 2,
          "rate_per_night": {
            "lowest": "$219",
            "extracted_lowest": 219,
            "before_taxes_fees": "$181",
            "extracted_before_taxes_fees": 181
          },
          "total_rate": {
            "lowest": "$656",
            "extracted_lowest": 656,
            "before_taxes_fees": "$542",
            "extracted_before_taxes_fees": 542
          }
        },
        ...
      ],
      "num_guests": 2,
      "rate_per_night": {
        "lowest": "$219",
        "extracted_lowest": 219,
        "before_taxes_fees": "$181",
        "extracted_before_taxes_fees": 181
      },
      "total_rate": {
        "lowest": "$656",
        "extracted_lowest": 656,
        "before_taxes_fees": "$542",
        "extracted_before_taxes_fees": 542
      }
    },
    {
      "source": "Hotels.com",
      "link": "https://www.google.com/aclk?sa=l&ai=Czqylw6bAZfzWGLKV_bMP0_W8wAOewZDUc42d5an2EZOVsOqtQQgKEAMg6ZDtigEoBGDJBqAB0f2h-wLIAQiqBFZP0BuZL9N7z-9nwlGlJlRpqqGnD8NypynSe0wxXVs4zP3yEFaX-UrSul4D-i1Ap9DLD8sOyIK1wKy4XwgUItbf7MjFPtiiAFhdE4ANy4hwPxs1axmgGMAE2L3U5sQEiAXfssGCTcAFkgGgBmWQBwGoB-u4sQKoB6a-G6gHuZqxAqgH89EbqAfu0huoB_-csQKoB8rcG6gHkq-xAqgHu6SxAqgHkqaxAqgH2KaxAqgHyqmxAqgHmbWxAqgH3rWxAqgH26qxAqgH0KqxAqgH3LCxAqgH6rGxAqgHqrixAqgHlLixAqgH7LixAqgHvrexAqgHsruxAqgHs7uxAqgHw72xAqgHxL2xAqAIlJimBLAIAcAIAdIIHxABMgKAQDoE4GGCQEIBAUjeuNYyUAlYvMTshO6ThAPICawB-AkBogrwBQoKMjAyNC0wMi0wNhADGgJVUyICZW4pGVR_sL2jNVMyDmhvdGVsc19jb21fbmV3OAJIAVIJMjQ2MDQwODE5XYWbB0Rl7NHjQmgAcgNVU0SCAW8KCTIwMTc5ODIxMRo8CgJDMhI2cmF0ZXBsYW5pZD0yNDYwNDA4MTkmbXBtPTI0Jm1wbj0yMDE3OTgyMTEmbXBvPUVDJm1wcD0xGgoKAkMzEgR0cnVlGgkKAkM0EgNVU0QyAggCQgkyNDYwNDA4MTmKAQp1cy1kZXNrdG9woAEBsAEBuAEByAGoyMKqBOABAegBA_ABAfgBAqACAKgCzAGoAuUDsALR_aH7ArgC37LBgk3gAgDqAgNVU0T6At0DaHR0cHM6Ly93d3cuaG90ZWxzLmNvbS9Ib3RlbC1TZWFyY2g_c2VsZWN0ZWQ9MzQ1Mzkmc3RhcnREYXRlPTIwMjQtMDItMDYmZW5kRGF0ZT0yMDI0LTAyLTA5Jm1kcGNpZD1IQ09NLVVTLk1FVEEuSFBBLkhPVEVMLUNPUkVTRUFSQ0gtZGVza3RvcC5IT1RFTCZNRFBEVEw9SFRMLjM0NTM5LjIwMjQwMjA2LjIwMjQwMjA5LkRERi4xLkNJRC4yMDY3NDc5NTg3MS5BVURJRC4mYWR1bHRzPTImY2hpbGRyZW49Jm1jdGM9MTAmbXBmPTY1Ni4zNCZtcGc9VVNEJm1wbD1VU0QmbXBqPTExMy45MSZyZmZyaWQ9c2VtLmhjb20uVVMuMTU2LjAwMy5sb2NhbHVuaXZlcnNhbC4wMi5kZXNrdG9wLTMua3dyZD1HR01FVEEuMzQ1MzlVU2VuLTIwMjQwMjA2LU4tQUJXPTEtY2FtcD0yMDY3NDc5NTg3MS1hdWQ9LU4mcmF0ZXBsYW5pZD0yNDYwNDA4MTkmbXBtPTI0Jm1wbj0yMDE3OTgyMTEmbXBvPUVDJm1wcD0xJmxvY2FsZT1lbl9VUyZzaXRlaWQ9MzAwMDAwMDAxigMA6AoBkAsDmAsB0Asa6AwTmg0BGqoNAlVTyA0BghQECHoSANAVAZgWAfgWAYAXAZIXCRIHCAEQAxiwAroXAkgB&ase=2&gclid=EAIaIQobChMIvMTshO6ThAMVskp_AB3TOg84EAoYAyABEgLhK_D_BwE&sig=AOD64_2ZZom5bHtNtrxOsRHrIQUyrjMvZA&adurl=https://www.hotels.com/Hotel-Search?selected%3D34539%26startDate%3D2024-02-06%26endDate%3D2024-02-09%26mdpcid%3DHCOM-US.META.HPA.HOTEL-CORESEARCH-desktop.HOTEL%26MDPDTL%3DHTL.34539.20240206.20240209.DDF.1.CID.20674795871.AUDID.%26adults%3D2%26children%3D%26mctc%3D10%26mpf%3D656.34%26mpg%3DUSD%26mpl%3DUSD%26mpj%3D113.91%26rffrid%3Dsem.hcom.US.156.003.localuniversal.02.desktop-3.kwrd%3DGGMETA.34539USen-20240206-N-ABW%3D1-camp%3D20674795871-aud%3D-N%26rateplanid%3D246040819%26mpm%3D24%26mpn%3D201798211%26mpo%3DEC%26mpp%3D1%26locale%3Den_US%26siteid%3D300000001",
      "logo": "https://www.gstatic.com/travel-hotels/branding/f358dd45-ebd1-4af8-988d-d53154b73975.png",
      "rooms": [
        {
          "name": "Room, 1 King Bed, Garden View",
          "images": [
            "https://lh3.googleusercontent.com/hrppk/AJw67y317fZZ3Ez5bPUxVOF9lKsrsjRVz566YoUpUzfta3xx2kylHKV_TA_cSL7iDgAL5GyeoS1MQHnkgmA-g5xV0MTFPNVW5vDXZ5tVZwRSE487EJoTt7kOlhpyUP_IGRD4nttwyOOqF2Gf3DSP6raKQaG7xQ",
            "https://lh3.googleusercontent.com/hrppk/AJw67y33_JBYYA_oCjs9AQ3mWXqIUvd2YZox4C5n4XTcs5FG2PzKCkd-A9vsbOnihXtXLH_wtuGkt84i5fX4OuZHyq6S1geL0AKoc0VNmH9i_PLgFGYlaT_CLlaDMV6lYqNAzUQy4cnajOC0TmddeOnVj1uV",
            "https://lh3.googleusercontent.com/hrppk/AJw67y1pPDAJzPknJCYp6OH-dwt0n-vMWSNpsI1oQGTREzXmylLGhYjG2jCau69U913D1CxGF-ZPA82jL2fHhzLugOOtAi_NuxQBWz886W9SozTRsoQcaRmgJb85xlqTNd_wOdbRfYhrdzTm6lxB3xqzZOz0vw",
            ...
          ],
          "link": "https://www.google.com/aclk?sa=l&ai=Cxk61w6bAZfzWGLKV_bMP0_W8wAOewZDUc42d5an2EZOVsOqtQQgKEAMg6ZDtigEoBGDJBqAB0f2h-wLIAQiqBFZP0BuZL9N7z-9nwlGlJlRpqqGnD8NypynSe0wxXVs4zP3yEFaX-UrSul4D-i1Ap9DLD8sOyIK1wKy4XwgUItbf7MjFPtiiAFhdE4ANy4hwPxs1axmgGMAE2L3U5sQEiAXfssGCTcAFkgGgBmWQBwGoB-u4sQKoB6a-G6gHuZqxAqgH89EbqAfu0huoB_-csQKoB8rcG6gHkq-xAqgHu6SxAqgHkqaxAqgH2KaxAqgHyqmxAqgHmbWxAqgH3rWxAqgH26qxAqgH0KqxAqgH3LCxAqgH6rGxAqgHqrixAqgHlLixAqgH7LixAqgHvrexAqgHsruxAqgHs7uxAqgHw72xAqgHxL2xAqAIlJimBLAIAcAIAtIIHxABMgKAQDoE4GGCQEIBAUjeuNYyUAlYvMTshO6ThAPICawB-AkBogqHBgoKMjAyNC0wMi0wNhADGgJVUyICZW4pGVR_sL2jNVMyDmhvdGVsc19jb21fbmV3OAJIAVIAXYWbB0Rl7NHjQmgAcgNVU0SCAYABCgkyMDE3OTgyMTEaPAoCQzISNnJhdGVwbGFuaWQ9MjQ2MDQwODE5Jm1wbT0yNCZtcG49MjAxNzk4MjExJm1wbz1FQyZtcHA9MRoKCgJDMxIEdHJ1ZRoJCgJDNBIDVVNEGg8KAkMxEgkyMDE3OTgyMTEyAggCQgkyNDYwNDA4MTmKAQp1cy1kZXNrdG9woAEBsAECuAEByAGoyMKqBOABAegBA_ABAfgBAoACAqACAKgCzAGoAuUDsALR_aH7ArgC37LBgk3gAgDqAgNVU0T6AugDaHR0cHM6Ly93d3cuaG90ZWxzLmNvbS9Ib3RlbC1TZWFyY2g_c2VsZWN0ZWQ9MzQ1Mzkmc3RhcnREYXRlPTIwMjQtMDItMDYmZW5kRGF0ZT0yMDI0LTAyLTA5Jm1kcGNpZD1IQ09NLVVTLk1FVEEuSFBBLkhPVEVMLUNPUkVTRUFSQ0gtUk9PTUJVTkRMRS1kZXNrdG9wLkhPVEVMJk1EUERUTD1IVEwuMzQ1MzkuMjAyNDAyMDYuMjAyNDAyMDkuRERGLjEuQ0lELjIwNjc0Nzk1ODcxLkFVRElELiZhZHVsdHM9MiZjaGlsZHJlbj0mbWN0Yz0xMCZtcGY9NjU2LjM0Jm1wZz1VU0QmbXBsPVVTRCZtcGo9MTEzLjkxJnJmZnJpZD1zZW0uaGNvbS5VUy4xNTYuMDAzLmxvY2FsdW5pdmVyc2FsLjAyLmRlc2t0b3AtMy5rd3JkPUdHTUVUQS4zNDUzOVVTZW4tMjAyNDAyMDYtTi1BQlc9MS1jYW1wPTIwNjc0Nzk1ODcxLWF1ZD0tTiZyYXRlcGxhbmlkPTI0NjA0MDgxOSZtcG09MjQmbXBuPTIwMTc5ODIxMSZtcG89RUMmbXBwPTEmbG9jYWxlPWVuX1VTJnNpdGVpZD0zMDAwMDAwMDGKAwDoCgGQCwOYCwHQCxroDBOaDQEaqg0CVVPIDQGCFAQIehIA0BUBmBYB-BYBgBcBkhcJEgcIARADGLACuhcCSAE&ase=2&gclid=EAIaIQobChMIvMTshO6ThAMVskp_AB3TOg84EAoYAyACEgLR0vD_BwE&sig=AOD64_38CoaZvrDPRucuYYhmgrl4aRK4nA&adurl=https://www.hotels.com/Hotel-Search?selected%3D34539%26startDate%3D2024-02-06%26endDate%3D2024-02-09%26mdpcid%3DHCOM-US.META.HPA.HOTEL-CORESEARCH-ROOMBUNDLE-desktop.HOTEL%26MDPDTL%3DHTL.34539.20240206.20240209.DDF.1.CID.20674795871.AUDID.%26adults%3D2%26children%3D%26mctc%3D10%26mpf%3D656.34%26mpg%3DUSD%26mpl%3DUSD%26mpj%3D113.91%26rffrid%3Dsem.hcom.US.156.003.localuniversal.02.desktop-3.kwrd%3DGGMETA.34539USen-20240206-N-ABW%3D1-camp%3D20674795871-aud%3D-N%26rateplanid%3D246040819%26mpm%3D24%26mpn%3D201798211%26mpo%3DEC%26mpp%3D1%26locale%3Den_US%26siteid%3D300000001",
          "num_guests": 2,
          "rate_per_night": {
            "lowest": "$219",
            "extracted_lowest": 219,
            "before_taxes_fees": "$181",
            "extracted_before_taxes_fees": 181
          },
          "total_rate": {
            "lowest": "$656",
            "extracted_lowest": 656,
            "before_taxes_fees": "$542",
            "extracted_before_taxes_fees": 542
          }
        },
        ...
      ],
      "num_guests": 2,
      "rate_per_night": {
        "lowest": "$219",
        "extracted_lowest": 219,
        "before_taxes_fees": "$181",
        "extracted_before_taxes_fees": 181
      },
      "total_rate": {
        "lowest": "$656",
        "extracted_lowest": 656,
        "before_taxes_fees": "$542",
        "extracted_before_taxes_fees": 542
      }
    },
  ],
  "prices": [
    {
      "source": "Hilton Bali Resort",
      "link": "https://www.google.com/travel/clk?pc=AA80Osz26imqKw1izJghzkYyhPj0nhnu-nLcuN0dUJG5N2G35354FDhxtpUzA-5JC2wj3sakLs8m3uGkcSqjoKs0OYcl_zEw_R-r2y-qArr7yJSzQ8xx5zAB1PTiMw5i&pcurl=https://linkcenterus.derbysoftca.com/dplatform-linkcenter/booking.htm?hotelCode%3DHILTON-DPSBA%26providerHotelCode%3DDPSBA%26checkInDate%3D2024-02-06%26checkOutDate%3D2024-02-09%26identifier%3Dgoogle-hilton%26price%3D9584652.00%26roomTypeCode%3DT2RG%26ratePlanCode%3DPGBON1%26currency%3DIDR%26language%3Den%26userCountry%3DUS%26dateType%3Dselected%26testClick%3Dfalse%26sitetype%3Dlocaluniversal%26occupancy%3D2%26partnerId%3Dhilton%26campaignid%3D%26rateRuleId%3D%26userlistid%3D%26ifDefaultDate%3Dselected%26isPromoted%3Dfalse%26isRuleIdsClosed%3Dfalse%26s_is_ad%3Dfalse%26adType%3D0%26adults%3D2%26children%3D0&ap=1",
      "logo": "https://www.gstatic.com/travel-hotels/branding/75ce5d87-7090-4e37-a9b2-57848aa21d9f.png",
      "official": true,
      "num_guests": 2,
      "rate_per_night": {
        "lowest": "$203",
        "extracted_lowest": 203,
        "before_taxes_fees": "$168",
        "extracted_before_taxes_fees": 168
      },
      "total_rate": {
        "lowest": "$610",
        "extracted_lowest": 610,
        "before_taxes_fees": "$504",
        "extracted_before_taxes_fees": 504
      }
    },
    {
      "source": "Tripadvisor.com",
      "link": "https://www.google.com/travel/clk?pc=AA80Osw-r2te6WbQEOsGWZ3h161epEAmorDPaG0P83JasMe67gjhPglh81NxD_hjhU5V2GS98taCvDHG4SuqhVQidn9sVv-9ZyDrppEAJUBvlqJCzukPJAUYzSVvrGdbn2xLszM&pcurl=https://www.tripadvisor.com/Hotel_Review-s1-?geo%3D1%26detail%3D301929%26m%3D66081%26staydates%3D2024_02_06_2024_02_09%26uguests%3D1_2%26supdv%3Ddesktop%26supbl%3Dlocaluniversal%26supkl%3Dselected%26supuc%3DUS%26supul%3Den%26supia%3D0%26supip%3D0%26supmb%3D4_1ntRbSTwBXmIMbuzvACN-G0lL-PARSqQUOUdUakEBevfE8kgR8sB8EoUpc4OSjIJlXBbZwBqqnTvT2HLHmA_YNwiSz-fLyPsDxVRp_njQeO4nD_wKpc6GNlXvtjWmIhW5KUf1IllKWqzkqU7cqwqJY_kGu4Yy-1rB4Zh4tyFxB-BYlfYn_WZT4jehaBm%26supmc%3DPs4-rkOfPw4%26supts%3D%26supey%3Dm%7C115991%7CPL_GPC_query%26supcd%3D%26suptp%3D23K8dleOGIsEe3O9ABQCWmT1sXG8SiC-yjU99wU8oCubjdr8UO1fI6Q2mAqI0iwp9z_3M5i-R8ifGxXlPb_dzAFesSXXRGVS96ChvZMzdhYHeG1UVTsxc_RcphBu6C_MDDd-fTMeHeaMcSjoA1MHpNn55abEThpYPngb-9XgyOu9150UUdGA9dQcjxEPzX&ap=1",
      "logo": "https://www.gstatic.com/travel-hotels/branding/6dcb5a28-6742-4ce4-9beb-07c31138a20b.png",
      "num_guests": 2,
      "rate_per_night": {
        "lowest": "$214",
        "extracted_lowest": 214,
        "before_taxes_fees": "$194",
        "extracted_before_taxes_fees": 194
      },
      "total_rate": {
        "lowest": "$642",
        "extracted_lowest": 642,
        "before_taxes_fees": "$581",
        "extracted_before_taxes_fees": 581
      }
    },
    {
      "source": "Reservation Lodge",
      "link": "https://www.google.com/travel/clk?pc=AA80OsxkReiBeHJm4OdbmAKBjjEa8ksvsDE8cir3wb8-eqq6jEEWrMQp_71w-W4W5YDz13k6rViMyBCDVzTANqr72YTsUY2rhYfeULVhHT_eUqllK88y3B_RjFU1owPuKAqjl9_e&pcurl=https://www.reservationlodge.com/hotel/24218/?check_in%3D2024-02-06%26check_out%3D2024-02-09%26rate_rule_id%3D%26custom2%3D91000000000_17071157047592690_378869957775_0_0%26custom3%3DPUBLIC%26site%3Dlocaluniversal%26verification%3D%26ad_click%3D%26base_rate%3D%26rate%3D636.48%26tax%3D110.43%26click_source%3Dgha--hotel-selected-desktop-24218-localuniversal-91000000000_17071157047592690_378869957775_0_0&ap=1",
      "logo": "https://www.gstatic.com/travel-hotels/branding/e431819a-dee0-4c31-8246-5b824a462661.png",
      "num_guests": 2,
      "rate_per_night": {
        "lowest": "$212",
        "extracted_lowest": 212,
        "before_taxes_fees": "$175",
        "extracted_before_taxes_fees": 175
      },
      "total_rate": {
        "lowest": "$636",
        "extracted_lowest": 636,
        "before_taxes_fees": "$526",
        "extracted_before_taxes_fees": 526
      }
    },
    ...
  ],
  "typical_price_range": {
    "lowest": "$104",
    "extracted_lowest": 104,
    "highest": "$207",
    "extracted_highest": 207
  },
  "nearby_places": [
    {
      "category": "Point of interest",
      "name": "Uluwatu Temple",
      "link": "https://www.google.com/search?q=Uluwatu+Temple&stick=H4sIAAAAAAAAAONgFmJQ4tTP1TdIyTPNqtBSzE620s_JT04syczPgzOsEktKihKTQcxiAM_9A8EyAAAA#fpstate=trskp&trifp=kpq%253DUluwatu%252BTemple%2526skpm%253D/m/0dn5jx%2526t%253Dd",
      "thumbnail": "https://encrypted-tbn2.gstatic.com/images?q=tbn:ANd9GcRkBw29pzLAp454LNpmnE0OAWXNqnjZupA2lTkGmRc1zLVRsX8w",
      "transportations": [
        {
          "type": "Taxi",
          "duration": "34 min"
        }
      ],
      "rating": 4.6,
      "reviews": 38292,
      "description": "Perched on a cliff, this ancient Hindu temple features ocean views & hosts traditional dance shows.",
      "gps_coordinates": {
        "latitude": -8.829143199999999,
        "longitude": 115.0849069
      }
    },
    {
      "category": "Point of interest",
      "name": "Sanur",
      "link": "https://www.google.com/search?q=Sanur&stick=H4sIAAAAAAAAAONgFmJQ4tLP1TcwLk_JMbTUUsxOttLPyU9OLMnMz4MzrBJLSooSk0HMYgDXMARSMwAAAA#fpstate=trskp&trifp=kpq%253DSanur%2526skpm%253D/m/03wdl19%2526t%253Dd",
      "thumbnail": "https://encrypted-tbn1.gstatic.com/images?q=tbn:ANd9GcSQhSFt1eR2D6gJL-F9bnzDvk0fDtXrvDPJDqfXoCLFPYXcSBc8",
      "transportations": [
        {
          "type": "Taxi",
          "duration": "36 min"
        }
      ],
      "rating": 4.5,
      "reviews": 5168,
      "description": "Colorful fishing boats dot beaches of this resort town with galleries, restaurants & an old temple.",
      "gps_coordinates": {
        "latitude": -8.7071782,
        "longitude": 115.2626236
      }
    },
    {
      "category": "Point of interest",
      "name": "Garuda Wisnu Kencana Cultural Park",
      "link": "https://www.google.com/search?q=Garuda+Wisnu+Kencana+Cultural+Park&stick=H4sIAAAAAAAAAONgFmJQ4tTP1TdIKaqqKtRSzE620s_JT04syczPgzOsEktKihKTQcxiAHzUtpcyAAAA#fpstate=trskp&trifp=kpq%253DGaruda%252BWisnu%252BKencana%252BCultural%252BPark%2526skpm%253D/m/0drzzq%2526t%253Dd",
      "thumbnail": "https://encrypted-tbn3.gstatic.com/images?q=tbn:ANd9GcQrq_dOatcZK8Z3zFb6SZBo0dB-CftKyIm3Y3IiT1PID6lCWZjd",
      "transportations": [
        {
          "type": "Taxi",
          "duration": "23 min"
        }
      ],
      "rating": 4.5,
      "reviews": 59856,
      "description": "Expansive park featuring monumental Hindu sculptures, plus frequent dance performances & concerts.",
      "gps_coordinates": {
        "latitude": -8.8104228,
        "longitude": 115.16759859999999
      }
    },
    ...
  ],
  "hotel_class": "5-star hotel",
  "extracted_hotel_class": 5,
  "images": [
    {
      "thumbnail": "https://lh5.googleusercontent.com/p/AF1QipP-qLxU3tiCqdsYQSoFpHHZPHu2akhJn0rUeDbJ=s287-w287-h192-n-k-no-v1",
      "original_image": "https://lh5.googleusercontent.com/p/AF1QipP-qLxU3tiCqdsYQSoFpHHZPHu2akhJn0rUeDbJ=s10000"
    },
    {
      "thumbnail": "https://lh5.googleusercontent.com/p/AF1QipP0TztBFkIQjSoo8mhZ2_i080hrr-WaZr8YKm97=s287-w287-h192-n-k-no-v1",
      "original_image": "https://lh5.googleusercontent.com/p/AF1QipP0TztBFkIQjSoo8mhZ2_i080hrr-WaZr8YKm97=s10000"
    },
    {
      "thumbnail": "https://lh5.googleusercontent.com/p/AF1QipPVj3dQgsFj1UCEh-NZ48YZhU-V9ADrYwqKRMd-=s287-w287-h192-n-k-no-v1",
      "original_image": "https://lh5.googleusercontent.com/p/AF1QipPVj3dQgsFj1UCEh-NZ48YZhU-V9ADrYwqKRMd-=s10000"
    },
    ...
  ],
  "overall_rating": 4.6,
  "reviews": 8123,
  "ratings": [
    {
      "stars": 5,
      "count": 6309
    },
    {
      "stars": 4,
      "count": 1153
    },
    {
      "stars": 3,
      "count": 322
    },
    {
      "stars": 2,
      "count": 97
    },
    {
      "stars": 1,
      "count": 242
    }
  ],
  "location_rating": 2.6,
  "reviews_breakdown": [
    {
      "name": "Atmosphere",
      "description": "Atmosphere",
      "total_mentioned": 282,
      "positive": 264,
      "negative": 7,
      "neutral": 11
    },
    {
      "name": "Pool",
      "description": "Pool",
      "total_mentioned": 444,
      "positive": 405,
      "negative": 24,
      "neutral": 15
    },
    {
      "name": "Property",
      "description": "Property",
      "total_mentioned": 1354,
      "positive": 1150,
      "negative": 106,
      "neutral": 98
    },
    ...
  ],
  "eco_certified": true
}

Example on Vacation Rentals

Some prices might have discount which include the original rate, we are able to parse it as original_rate_per_night, original_total_rate_per_night and discount_remarks.

Example on Vacation Rentals

JSON Example

{
  ...
  "type": "vacation rental",
  "name": "Tirta Arum",
  "link": "https://www.bluepillow.com/search?p_id=589de3fa7c00cb10c8d92dc8&dest=bkng&cat=Villa&accomodationids=59438e137c00cb0e6436d3cf",
  "gps_coordinates": {
    "latitude": -8.497389793395996,
    "longitude": 115.26856231689453
  },
  "check_in_time": "2:00 PM",
  "check_out_time": "12:00 PM",
  "rate_per_night": {
    "lowest": "$79",
    "extracted_lowest": 79,
    "before_taxes_fees": "$66",
    "extracted_before_taxes_fees": 66
  },
  "total_rate": {
    "lowest": "$238",
    "extracted_lowest": 238,
    "before_taxes_fees": "$199",
    "extracted_before_taxes_fees": 199
  },
  "prices": [
    {
      "source": "Bluepillow.com",
      "link": "https://www.google.com/travel/clk?pc=AA80OsxTY8IIvsisSrnNp_BxZRJwpBtI7xBjPyAWGLO7mTqstV2E4-5NKPL15EXhfrp7I-2RaCTn2_xY9BdWnF8oLpSL7aX2enpWQFiY3gddG76jdffjRrwhEnboD91J0HQeiR5Uqw&pcurl=https://www.bluepillow.com/checkout/59438e137c00cb0e6436d3cf?begin%3D2024-02-06%26end%3D2024-02-09%26block_id%3D-b200443101_97946373_0_1_0-p198.56-19.86-19.86-USD-bkng-Villa%26adults%3D2%26childs%3D0%26infants%3D0%26country%3DUS%26currency%3DUSD%26language%3Den%26utm_campaign%3Dvr%26prid%3D&ap=1",
      "logo": "https://www.gstatic.com/travel-hotels/branding/190ff319-d0fd-4c45-bfc8-bad6f5f395f2.png",
      "num_guests": 2,
      "rate_per_night": {
        "lowest": "$79",
        "extracted_lowest": 79,
        "before_taxes_fees": "$66",
        "extracted_before_taxes_fees": 66
      },
      "total_rate": {
        "lowest": "$238",
        "extracted_lowest": 238,
        "before_taxes_fees": "$199",
        "extracted_before_taxes_fees": 199
      }
    }
  ],
  "nearby_places": [
    {
      "category": "Restaurant",
      "name": "Andong Teras Restaurant",
      "thumbnail": "https://lh3.googleusercontent.com/p/AF1QipMUoWnmKABXqkgkruEtc-Jo-fA8jVIVJtsUG0c9=k",
      "transportations": [
        {
          "type": "Taxi",
          "duration": "9 min"
        },
        {
          "type": "Walking",
          "duration": "45 min"
        },
        {
          "type": "Public transport",
          "duration": "56 min"
        }
      ],
      "rating": 3.9,
      "reviews": 33,
      "gps_coordinates": {
        "latitude": -8.4961264,
        "longitude": 115.27313919999999
      }
    },
    {
      "category": "Restaurant",
      "name": "Warung Titi",
      "thumbnail": "https://lh3.googleusercontent.com/p/AF1QipNk_XxvIX_9zdnbN4vFd1OvCknm_C2y5d6kiZtp=k",
      "transportations": [
        {
          "type": "Taxi",
          "duration": "1 min"
        },
        {
          "type": "Walking",
          "duration": "6 min"
        },
        {
          "type": "Public transport",
          "duration": "47 min"
        }
      ],
      "rating": 4.7,
      "reviews": 441,
      "gps_coordinates": {
        "latitude": -8.500278999999999,
        "longitude": 115.26978659999999
      }
    },
    {
      "category": "Indonesian restaurant",
      "name": "Lumbung Restaurant",
      "thumbnail": "https://lh3.googleusercontent.com/p/AF1QipOgxujOo4AHbnZJ82tuZP2jnp0Rc1Uz2l8OOOWI=k",
      "transportations": [
        {
          "type": "Taxi",
          "duration": "15 min"
        },
        {
          "type": "Walking",
          "duration": "57 min"
        },
        {
          "type": "Public transport",
          "duration": "1 hr 7 min"
        }
      ],
      "rating": 4.6,
      "reviews": 210,
      "gps_coordinates": {
        "latitude": -8.490080899999999,
        "longitude": 115.26343209999999
      }
    },
    ...
  ],
  "images": [
    {
      "thumbnail": "https://lh6.googleusercontent.com/proxy/NSSROtP32sizUtR_2iuebv6RmUW7b3hOZghRn2oayyRParcnAYrI5fIJGi_dDXvds0JQ29SN0jKvsH_DWIRQK95CjUTSqmiIfboYiLYbou5AdXXjp0-w9ar5QI98qWPyWk9pAjkIIsku-5KMgPb1L2gBaiQ0eaM=s287-w287-h192-n-k-no-v1",
      "original_image": "https://q-xx.bstatic.com/xdata/images/hotel/max1440x1080/83593383.jpg?k=e3d6728f34e933b575b1638c51d81c0e8ec0a22b894e7ebafe4e09a3fb38f378&o="
    },
    {
      "thumbnail": "https://lh4.googleusercontent.com/proxy/gCN1l3OOPvsLYhGzPh6nhn18iN1-AjT89GjhipuaYeWadub_Otcbz-ed5HAD6OlI_TV4xeFhT9Wt7cSa6TFfgvK59zJMk4kZY1WC5ZhIw-1xiuVZlWqDf8whZajxoOvlafY1CB3Mu_39cfvTtXcVXd6Kh84jPQ=s287-w287-h192-n-k-no-v1",
      "original_image": "https://q-xx.bstatic.com/xdata/images/hotel/max1440x1080/378381952.jpg?k=709bc05c020f7151d88ae8bc135e2241aa25531f87378f7817d6ec51b4fb62ba&o="
    },
    {
      "thumbnail": "https://lh5.googleusercontent.com/proxy/T2kecBEXKMpTBGuno8C3LP0DYA6pVXBx_7q8QdVU7P6uFuw6H1jPtKhiCHFBvKZU3AFi9reOxAuDnI8DBxU569w0JFdCECz6Njyplz02crF-QGvQZCfoDmNot-mtdBFeJ2zwYcpeiifji1qHedWFLtMw_08V1A=s287-w287-h192-n-k-no-v1",
      "original_image": "https://q-xx.bstatic.com/xdata/images/hotel/max1440x1080/87928739.jpg?k=c1cbc17943ec6bcf1ab1b0a99fb30498444d0cee9202cd65841d516484d678a3&o="
    },
    ...
  ],
  "overall_rating": 4.3,
  "reviews": 367,
  "location_rating": 3.8,
  "amenities": [
    "Air conditioning",
    "Balcony",
    "Crib",
    ...
  ],
  "excluded_amenities": [
    "No beach access",
    "Not kid-friendly",
    "No elevator",
    ...
  ],
  "essential_info": [
    "Entire villa",
    "Sleeps 4",
    "6 bedrooms",
    ...
  ]
}

Example on Discount

Some prices might have discount which include the original rate, we are able to parse it as original_rate_per_night, original_total_rate_per_night and discount_remarks.

Example on Discount

JSON Example

{
  ...
  "prices": [
    ...
    {
      "source": "airasia Super App",
      "link": "https://www.google.com/travel/clk?pc=AA80OszzryG-YvxmjgJpGD_10zb-g709bQ9KH06o2GB2IyXTQZNB9f31Lq6OH-OluL3BaTX_lujNINJanu9Uy5ovP38fMaFTE0Cqi60QAEMtf1xjmMabJY5hXQO3feYX9A&pcurl=https://www.airasia.com/hotel/1deb6a?F_R%3D%26adults%3D2%26countryCode%3DUS%26currency%3DUSD%26days%3D3%26fromDate%3D2024-02-06%26languageId%3Den%26toDate%3D2024-02-09%26channel%3DGOOGLE%26utm_source%3Dgooglehotels%26utm_medium%3Dmetasearch&ap=1",
      "logo": "https://www.gstatic.com/travel-hotels/branding/6c147375-3062-4635-9c98-53a0f8d0ba0e.png",
      "num_guests": 2,
      "original_rate_per_night": {
        "lowest": "$207",
        "extracted_lowest": 207,
        "before_taxes_fees": "$207",
        "extracted_before_taxes_fees": 207
      },
      "original_total_rate": {
        "lowest": "$621",
        "extracted_lowest": 621,
        "before_taxes_fees": "$621",
        "extracted_before_taxes_fees": 621
      },
      "discount_remarks": [
        "Member rate, save 15%"
      ],
      "rate_per_night": {
        "lowest": "$177",
        "extracted_lowest": 177
      },
      "total_rate": {
        "lowest": "$530",
        "extracted_lowest": 530
      }
    }
  ],
  ...
}

Example on Free Cancellation

Some prices might show free cancellation details, we are able to parse it as free_cancellation, free_cancellation_until_date and free_cancellation_until_time.

Example on Free Cancellation

JSON Example

{
  ...
  "prices": [
    ...
    {
      "source": "Hotels.com",
      "link": "https://www.google.com/travel/clk?pc=AA80Osyi5R-K7FGVS1OA37rPufh8nzzlfLCYX3sZLOpz6eXk1UJkxahC6KtfArx-1fMdROThbEMq8BlX_CB21KtJUQbXDniV7D2l9uTOwXscUvgfPmoKmvaOzhdr4PDjasdVCqu-vdA&pcurl=https://www.hotels.com/Hotel-Search?selected%3D92220472%26startDate%3D2024-02-06%26endDate%3D2024-02-09%26mdpcid%3DHCOM-US.META.HPA.HOTEL-ORGANIC-desktop.HOTEL%26MDPDTL%3DHTL.92220472.20240206.20240209.DDF.1.CID..AUDID.%26adults%3D2%26children%3D%26mctc%3D10%26mpf%3D1585.17%26mpg%3DMYR%26mpl%3DUSD%26mpj%3D275.09%26rffrid%3Dsem.hcom.US.156.024.localuniversal.02.desktop-3.kwrd%3DGGMETA.92220472USen-20240206-N-ABW%3D1-camp%3D-aud%3D-N%26rateplanid%3D389784941%26mpm%3D24%26mpn%3D321911396%26mpo%3DEC%26mpp%3D1%26locale%3Den_US%26siteid%3D300000001&ap=1",
      "logo": "https://www.gstatic.com/travel-hotels/branding/f358dd45-ebd1-4af8-988d-d53154b73975.png",
      "num_guests": 2,
      "rate_per_night": {
        "lowest": "MYR 528",
        "extracted_lowest": 528,
        "before_taxes_fees": "MYR 437",
        "extracted_before_taxes_fees": 437
      },
      "total_rate": {
        "lowest": "MYR 1,585",
        "extracted_lowest": 1585,
        "before_taxes_fees": "MYR 1,310",
        "extracted_before_taxes_fees": 1310
      },
      "free_cancellation": true,
      "free_cancellation_until_date": "Feb 5",
      "free_cancellation_until_time": "6:00 PM"
    }
  ],
  ...
}

Example on Deal

Some properties might have active deal, we are able to parse it as deal and deal_description.

Example on Deal

JSON Example

{
  ...
  "deal": "33% less than usual",
  "deal_description": "Great Deal",
  ...
}