Morrisons is the fourth largest chain of supermarkets in the United Kingdom, founded in 1899. It is headquartered in Bradford, UK, and has over 110 000 employees. As of 2021, it has 497 stores.

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://groceries.morrisons.com/products/harringtons-rich-in-chicken-with-rice-adult-dog-complete-397401011"}'

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://groceries.morrisons.com/products/harringtons-rich-in-chicken-with-rice-adult-dog-complete-397401011",
"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

{
"propertyName": "Harringtons Rich In Chicken With Rice Adult Dog Complete 5kg",
"location": "",
"ratingValue": "5",
"ratingCount": "15",
"reviews": [{
"reviewId": "168676",
"customer": {
"username": "odie Marks",
"location": "",
"level": "",
"authorUrl": "",
"verified": "",
"helpfulVotes": ""
},
"title": "Great sized kibble for a medium dog",
"reviewUrl": "",
"rating": "5",
"text": "Dog really likes this flavour and great sized kibble for a medium sized dog",
"reviewedOn": "2021-08-25",
"photos": [],
"repliedTo": false,
"externalSource": "",
"replies": [],
"followUpReviews": [],
"comments": [],
"selfReview": null,
"commentsCount": null,
"reviewerPhoto": null,
"language": ""}

morrison review