Whirlpool is an American manufacturer and marketer of home appliances. Although it's generally considered to be a multinational company, its headquarters are in Benton Charter Township, Michigan, United States. It has around 78.000 employees worldwide.

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.whirlpool.com/laundry/dryers/electric/p.7.4-cu.ft-front-load-heat-pump-dryer-with-intiutitive-touch-controls,-advanced-moisture-sensing.whd560chw.html"}'

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.whirlpool.com/laundry/dryers/electric/p.7.4-cu.ft-front-load-heat-pump-dryer-with-intiutitive-touch-controls,-advanced-moisture-sensing.whd560chw.html",
"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": "7.4 cu.ft Front Load Heat Pump Dryer with Intiutitive Touch Controls, Advanced Moisture Sensing",
"location": null,
"ratingValue": "3.7",
"ratingCount": "107",
"reviews": [
{
"reviewId": "Reviews-252807024",
"customer": {
"username": "Gigi",
"location": "Quechee VT",
"level": null
},
"title": "Pretty good!",
"rating": "4",
"text": "So given that these ventless (...)",
"reviewedOn": "2021-12-19",
"photos": null,
"repliedTo": null,
"externalSource": null,
"replies": null,
"followUpReviews": null,
"comments": null,
"selfReview": null,
"commentsCount": null,
"reviewerPhoto": null
}

]

}

whirpoolReview1