Zoro.com was launched in 2011 with just around 20 employees, as an e-commerce business and a Grainger's subsidiary. It exists to serve the US small business market through a web-only transaction-based model, by selling tools and materials needed to run various kinds of businesses.

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.zoro.com/flash-furniture-glass-patio-table-set-square-315-tlh-0732sq-017cbk4-gg/i/G3626749/"}'

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.zoro.com/flash-furniture-glass-patio-table-set-square-315-tlh-0732sq-017cbk4-gg/i/G3626749/",
"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": "Glass Patio Table Set, Square, 31.5\"",
"location": "",
"ratingValue": "5.0",
"ratingCount": "2",
"reviews": [
{
"reviewId": "320826874",
"customer": {
"username": "Madonna",
"location": "",
"level": "",
"authorUrl": "",
"verified": "",
"helpfulVotes": "2"
},
"title": "Looks great on our patio",
"reviewUrl": "",
"rating": "5",
"text": "Very pleased with this purchase. Table was easy to assemble. Chairs are quite sturdy although I did add chair pads for additional comfort.\\n#sweepstakes",
"reviewedOn": "",
"photos": [],
"repliedTo": false,
"externalSource": "",
"replies": [],
"followUpReviews": [],
"comments": [],
"selfReview": null,
"commentsCount": null,
"reviewerPhoto": null,
"language": ""
}

zoro review