Chewy is an American company, mainly focused on being a quality online retailer of pet food and pet-related products. It is based in Florida and is currently owned by PetSmart. Its revenue is around billion dollars and it has around 18.500 employees. 

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.chewy.com/blue-buffalo-life-protection-formula/dp/32041"}'

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.chewy.com/blue-buffalo-life-protection-formula/dp/32041",
"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": "Blue Buffalo Life Protection Formula Adult Chicken & Brown Rice Recipe Dry Dog Food",
"location": "",
"ratingValue": "4.6",
"ratingCount": "2552",
"reviews": [
{
"reviewId": "236721387",
"customer": {
"username": "Tmbear",
"location": "",
"level": "",
"authorUrl": "",
"verified": "",
"helpfulVotes": ""
},
"title": "pups love this food",
"reviewUrl": "",
"rating": "5",
"text": "My pups love this and I mix some pumpkin or sweet potatoes with it.",
"reviewedOn": "2022-01-08",
"photos": [],
"repliedTo": false,
"externalSource": "",
"replies": [],
"followUpReviews": [],
"comments": [],
"selfReview": {
"reviewId": null,
"name": null,
"reviewedOn": null,
"text": null,
"helpful": null,
"commentCount": null,
"rating": null,
"comments": null
},
"commentsCount": null,
"reviewerPhoto": null,
"language": ""
}

]

}