Walmart is an American, multinational retail corporation. It has around 10566 stores worldwide and yearly revenue of over 500 billion dollars, making it the largest company by revenue in the world. It is open in 24 countries while being headquartered in Arkansas, United States. The total number of employees is currently over 2.300.000. 

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.walmart.com/ip/Kinsa-QuickCare-Smart-Bluetooth-Stick-Thermometer/798632301"}'

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.walmart.com/ip/Kinsa-QuickCare-Smart-Bluetooth-Stick-Thermometer/798632301",
"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": "Kinsa® QuickCare™ Bluetooth® Smart Thermometer, Oral/Rectal/Underarm with Family Tracking App",
"location": "",
"ratingValue": "4.7",
"ratingCount": "226",
"reviews": [
{
"reviewId": "272153411",
"customer": {
"username": "lmcree",
"location": "",
"level": "",
"authorUrl": "",
"verified": "",
"helpfulVotes": ""
},
"title": "Highly recommend",
"reviewUrl": null,
"rating": "5",
"text": "I was given this thermometer to try (...)",
"reviewedOn": "2021-11-25",
"photos": null,
"repliedTo": false,
"externalSource": null,
"replies": [],
"followUpReviews": null,
"comments": null,
"selfReview": null,
"commentsCount": null,
"reviewerPhoto": null,
"language": null
}