ProductReview is a consumer opinion site, founded in 2003. It provides a platform where people can rate and review services and products and the shops that sell them. It is mainly focused on the Australian market and prides itself on being the first one offering real-life experiences and opinions voiced by Australians.

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.productreview.com.au/listings/braun-texstyle-7"}'

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.productreview.com.au/listings/braun-texstyle-7",
"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": "Braun Texstyle 7 Series",
    "location": null,
    "ratingValue": "4",
    "ratingCount": "152",
    "reviews": [
        {
            "reviewId": "review-85001bf7-9534-4c97-864d-9e789b504229",
            "customer": {
                "username": "John Chilcott",
                "location": "Hobart, TAS",
                "level": null
            },
            "title": "Bad design",
            "rating": "2",
            "text": "The iron has a bad design fault. It is extremely difficult to hold the iron in a normal way without touching the spray button. This results in unwanted wet patches on items being ironed. A pity, because the iron works very well apart from that.",
            "reviewedOn": "2021-01-17",
            "photos": null,
            "repliedTo": null,
            "externalSource": null,
            "replies": null,
            "followUpReviews": null,
            "comments": null,
            "selfReview": null,
            "commentsCount": null,
            "reviewerPhoto": null
        }
    ]
}
ProductReview_Final