With over 1 billion dollars worth of revenue and 27000 employees, Petco is one of the largest American pet retailer corporations. It sells pet food, products, and services, as well as certain types of live small animals. It had a substantial growth since its founding in 1965 and now boasts over 1500 stores across the United States, Mexico, and Puerto Rico.

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.petco.com/shop/en/petcostore/product/purina-pro-plan-focus-small-breed-entree-adult-wet-dog-food-variety-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.petco.com/shop/en/petcostore/product/purina-pro-plan-focus-small-breed-entree-adult-wet-dog-food-variety-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": "Purina Pro Plan Grain Free, Small Breed Pate Focus Turkey & Chicken Variety Pack Wet Dog Food, 3.5 oz., Count of 12",
"location": null,
"ratingValue": "4.56",
"ratingCount": "66",
"reviews": [
{
"reviewId": "211581003",
"customer": {
"username": "pekemom2",
"location": "",
"level": "",
"authorUrl": "",
"verified": "",
"helpfulVotes": ""
},
"title": "ewwww",
"reviewUrl": "",
"rating": "2",
"text": "Smells awful. Must not taste great either, dog walked away from the plate.",
"reviewedOn": "2021-10-26",
"photos": [],
"repliedTo": false,
"externalSource": "",
"replies": [
{
"repliedBy": "Purina",
"text": "Thank you for bringing this to our (...)",
"replyDate": "2021-11-01"
}
],
"followUpReviews": [],
"comments": [],
"selfReview": null,
"commentsCount": null,
"reviewerPhoto": null,
"language": ""
}

PetcoJLAReview