One of the most famous British pet supplies retailers, Pets at home has seen substantial growth since it was founded in 1991. It now sells pet products including food, toys, bedding, medication, accessories and pets and is listed in the London Stock Exchange. It operates 453 stores and 316 grooming salons.

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.petsathome.com/shop/en/pets/felix-kitten-pouch-mixed-variety-in-jelly-100gm-12-pack"}'

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.petsathome.com/shop/en/pets/felix-kitten-pouch-mixed-variety-in-jelly-100gm-12-pack",
"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": "Felix Kitten Wet Cat Food Mixed Selection in Jelly 12x100g",
"location": null,
"ratingValue": "4.24",
"ratingCount": "37",
"reviews": [
{
"reviewId": "385496948",
"customer": {
"username": "Ellen",
"location": "Chatham",
"level": "",
"authorUrl": "",
"verified": "True",
"helpfulVotes": "0"
},
"title": "Kitten not a big fan",
"reviewUrl": "",
"rating": "2",
"text": "Little Tux loves the chicken flavour, doesn't leave a crumb compared to (...)",
"reviewedOn": "2021-10-24",
"photos": [],
"repliedTo": false,
"externalSource": "",
"replies": [
{
"repliedBy": "Merchant",
"text": "Hi, thank you for your feedback. We’re sorry to hear that you were (...)",
"replyDate": "2021-10-27"
}
],
"followUpReviews": [],
"comments": [],
"selfReview": null,
"commentsCount": null,
"reviewerPhoto": null,
"language": ""
}

petsathome_Review