Word of mouth is an Australian-based website containing crowd-based reviews of local businesses. It was founded in 2007 and lists more than 624.000 reviews. Its content is entirely user-generated, originally being focused solely on Melbourne.

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.wordofmouth.com.au/reviews/kfc-burwood"}'

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.wordofmouth.com.au/reviews/kfc-burwood",
"dateFrom": "2019-03-10", *
"reviewLimit" : "1" **
}

* "dateFrom" is optional

** "reviewLimit" is optional

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

Parameter content type: application/json

Response

{
    "propertyName": "KFC",
    "location": "100 Burwood Rd, Burwood, NSW 2134",
    "ratingValue": "3.4",
    "ratingCount": "11",
    "reviews": [
        {
            "reviewId": null,
            "customer": {
                "username": "lucy91",
                "location": "Breakfast Point NSW",
                "level": null
            },
            "title": null,
            "rating": "",
            "text": "Prices have risen significantly over time and unfortunately the
                           service hasn't. However, they still service delicious chicken and
                           chips. Portions aren't very big either, but if you're going for a
                           quick snack, snack boxes are perfect.",
            "reviewedOn": "2012-10-28",
            "photos": null,
            "repliedTo": null,
            "externalSource": null,
            "replies": null,
            "followUpReviews": null,
            "comments": null,
            "selfReview": null,
            "commentsCount": null,
            "reviewerPhoto": null
        }
    ]
}