Target could be described as an American department store chain from Minnesota. It has around 1926 stores in United States and Canada. With a revenue of about 99 billion U.S dollars, it's able to employ over 409 000 people.

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": "http://www.target.com/p/kinsa-smart-ear-thermometer/-/A-50070285"}'

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":"http://www.target.com/p/kinsa-smart-ear-thermometer/-/A-50070285",
"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 Smart Ear Thermometer",
"location": "",
"ratingValue": "3.9",
"ratingCount": "335",
"reviews": [
{
"reviewId": "b07b8068-ce6d-48b6-a188-f40be7e53e2d",
"customer": {
"username": "MommyB",
"location": "",
"level": "",
"authorUrl": "",
"verified": "",
"helpfulVotes": "0"
},
"title": "Waste of money",
"reviewUrl": "",
"rating": "1",
"text": "If I could give 0 stars, I would! This thermometer NEVER gives an accurate reading. Never reads above 97 but temp at doctor 5 minutes later was 104. DO NOT BUY THIS!",
"reviewedOn": "2022-01-11",
"photos": [],
"repliedTo": false,
"externalSource": "",
"replies": [
{
"repliedBy": "[]",
"text": "[]",
"replyDate": null
}],
}