Home Depot could be best described as one of the most famous home improvement retailers in the United States. It was founded in February 1978 and since has grown to over 2312 locations all over North America. It sells  tools, construction products, appliances, and services, employing over 500 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": "https://www.homedepot.com/p/Keeper-17-500-lbs-Utility-Winch-12VDC-with-Wireless-Remote-KW17122-1/202862240"}'

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.homedepot.com/p/Keeper-17-500-lbs-Utility-Winch-12VDC-with-Wireless-Remote-KW17122-1/202862240",
"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": "17,500 lbs. Utility Winch 12VDC with Wireless Remote",
"location": null,
"ratingValue": "5.0",
"ratingCount": "4",
"reviews": [
{
"reviewId": "20286224000004",
"customer": {
"username": "red",
"location": "",
"level": "",
"authorUrl": "",
"verified": "",
"helpfulVotes": ""
},
"title": "the keeper 17.500 lbs winch",
"reviewUrl": "",
"rating": "5.0",
"text": "i bait this keeper winch a few weeks ago i needed the winch to pull a steel storage building 40 footer. and it did the job (...)",
"reviewedOn": "2021-03-28",
"photos": [],
"repliedTo": false,
"externalSource": "",
"replies": [],
"followUpReviews": []
}