πŸ“ˆExpedia Hotel Price API

is API will help you collect data specifically from Expedia.com only. Each request to this API will cost 2 credit.

Parameters

Parameter
Description

api_key required

Your personal API key.

hotelid required

This is the unique hotel ID used by Expedia.com.

adults required

It is the number of adults. The minimum value should be 1.

rooms required

It is the number of rooms.

checkin required

It is the check-in date. Format - YYYY-MM-DD

checkout required

It is the check-out date. Format - YYYY-MM-DD

kids required

It is the number of kids. The minimum value can be 0.

currency required

It could be any currency like USD, INR, EUR, etc.

API Example

curl "https://api.makcorps.com/expedia?hotelid=1450057&currency=USD&rooms=1&adults=2&checkin=2025-12-10&checkout=2025-12-11&api_key=6576a85d9796563d73e34228401"

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