πExpedia Hotel Price API
Parameters
Parameter
Description
API Example
curl "https://api.makcorps.com/expedia?hotelid=1450057¤cy=USD&rooms=1&adults=2&checkin=2025-12-10&checkout=2025-12-11&api_key=6576a85d9796563d73e34228401"import requests
url = "https://api.makcorps.com/expedia"
params = {
"hotelid": "1450057",
"checkin": "2025-12-05",
"checkout": "2025-12-11",
"currency": "USD",
"adults": 2,
"rooms": 1,
"api_key": "6576a85d9796563d73e34228401"
}
response = requests.get(url, params=params)
if response.status_code == 200:
print(response.json())
else:
print(f"Request failed with status code {response.status_code}")
Response
"price": {
"options": [
{
"leadingCaption": null,
"displayPrice": {
"formatted": "$299",
"__typename": "Money"
},
"priceDisclaimer": null,
"accessibilityLabel": "Price is $299",
"strikeOut": null,
"loyaltyPrice": null,
"priceHeaderDialog": null,
"__typename": "PropertyPriceOption",
"disclaimer": null
}
],
"priceMessaging": null,
"__typename": "PropertyPrice",
"displayMessages": [
{
"lineItems": [
{
"__typename": "DisplayPrice",
"role": "LEAD",
"price": {
"formatted": "$299",
"accessibilityLabel": "The current price is $299",
"__typename": "FormattedMoney"
},Last updated