Google Hotels Detail
Get per-property vendor pricing and full details for one hotel — using a detail_token from the Hotels endpoint plus the stay dates.
POST/api/v2/google/hotels/detail
Authorizations
AuthorizationstringheaderrequiredBearer authentication header of the form Bearer <token>, where <token> is your Scavio API key (e.g. Bearer sk_live_your_key).
Body
application/jsondetail_tokenstringrequiredFrom a listing property's detail_token.
Example: Q2hnSTVzQzIx…
check_in_datestringrequiredCheck-in date, YYYY-MM-DD.
Example: 2026-08-01
check_out_datestringrequiredCheck-out date, YYYY-MM-DD.
Example: 2026-08-05
currencystringCurrency code.
Example: USD
glstringCountry perspective.
Example: us
hlstringUI language.
Example: en
Request
from scavio import ScavioClient
client = ScavioClient(api_key="sk_live_your_key")
results = client.google.hotels_detail("Q2hnSTVzQzIx…", "2026-08-01", "2026-08-05")
print(results)Response
"engine": "google_hotels_detail",
"detail_token": "Q2hnSTVzQzIxOXlvMzk2OUFSb0xMMmN2TVhZNGFGOXlZbW9RQVF8MHg0N2U2NmRlMzYwMTk1NGQ5OjB4YzA1ZDg3MGQxOGRjMWMyOXwzNDQ2ODk",
"check_in_date": "2026-08-01",
"check_out_date": "2026-08-05",
"currency": "USD",
"gl": "us",
"hl": "en"
},
"detail_token": "Q2hnSTVzQzIxOXlvMzk2OUFSb0xMMmN2TVhZNGFGOXlZbW9RQVF8MHg0N2U2NmRlMzYwMTk1NGQ5OjB4YzA1ZDg3MGQxOGRjMWMyOXwzNDQ2ODk",
},
"credits_used": 1,
"credits_remaining": 49
}