Expedia is an American, Seattle-based travel agency. It launched 20 years ago. It now has a website and a mobile app and enables users to book airline tickets, hotel reservations, car rentals, cruise ships, and vacation packages. Interestingly enough, it even accepts bitcoins!

Submitting the API request

This is sample CURL request you can use to test JustLikeAPI features.

Please make sure to replace:
- YOUR_API_KEY with the one you received from our support team
- PAGE_SPECIFIC_URL - with the endpoint of the method you're trying to invoke
- JSON payload - with the contents of your request (the sample payload for each request is given below)

curl -X POST https://api.justlikeapi.io/reviews/get -H 'authorization: Bearer YOUR_API_KEY' -H 'cache-control: no-cache' -H 'content-type: application/json' -d '{ "propertyUrl": "https://www.expedia.com.au/Airlie-Beach-Hotels-Club-Wyndham-Airlie-Beach.h2802992.Hotel-Information"}'

Read operations

Get method will pull in reviews for platform of your choice. Reviews will be ordered by date and can include information from the code example bellow:

Request

{
"propertyUrl":""https://www.expedia.com.au/Airlie-Beach-Hotels-Club-Wyndham-Airlie-Beach.h2802992.Hotel-Information",
"dateFrom": "2018-03-10", *
"reviewLimit" : "1" **
}

* "dateFrom" is optional

** "reviewLimit" is optional

Base URL : https://justlikeapi.io/reviews/get

Parameter content type: application/json

Response

{
    "platform": "Expedia",
    "propertyName": null,
    "url": "https://www.expedia.com.au/Airlie-Beach-Hotels-Club-Wyndham-Airlie-Beach.h2802992.Hotel-Information",
    "location": null,
    "rating": "4.3",
    "amenities": "4.1",
    "facilitiesHotelConditionRating": "4.0",
    "excellentReview": "38",
    "goodReview": "30",
    "okayReview": "6",
    "mediocreReview": "4",
    "poorReview": "1",
    "ratingCleanliness": "4.2",
    "ratingComfort": null,
    "serviceStaffRating": "3.9",
    "ratingCount": "79",
    "propertyId": null,
    "reviews": [
        {
            "reviewId": "6192afdc8725ee4450294d2b",
            "internalReviewId": null,
            "customer": {
                "username": "Kylie",
                "location": null,
                "level": null
            },
            "title": "Good",
            "rating": "4",
            "text": "Great views and very relaxing. Close to town with (...)",
            "dislike": null,
            "like": null,
            "reviewedOn": "Nov 15, 2021",
            "timeOfTravel": null,
            "scanTimestamp": null,
            "reviewUrl": null,
            "photos": [
                {
                    "photoUrl": null
                }
            ]
        }
    ],
    "valueForMoneyRating": null,
    "wifiRating": null,
    "recommendationRating": null,
    "eMail": null,
    "website": null,
    "phone": null
}
Expedia final