Review Service

Returns the 5 most recent reviews based on a product SKU. Several filter parameters are available to let you select only the reviews that matter to you. Only active (approved) reviews are returned by this method.
List of available parameters
 
sku

The product SKU you want the reviews for.

Example Values: B0051VVOB2
 
 
limit
optional
Default: 5

Amount of reviews to load at once

Example Values: 15
 
 
order
optional
Default: desc

The order the reviews should be loaded. This parameter is applied to the review creation date. If the paramter is ‘votes’, the reviews with the highest number of likes will be loaded.

Supported Values: random | desc | asc | votes
 
 
commented
optional
Default: all

Filter reviews with comments or not.

Supported Values: all | uncommented | commented
 
 
from_grade
optional
Default: 1

Load reviews with a rating higher than the given parameter. Useful to display rotating reviews on the homepage.

Example Values: 3
 
 
since
optional
Default: null

Load reviews created after the given date (YYYY-MM-DD).

Example Values: 2012-05-05
 
 
avatar_only
optional
Default: false

Only load reviews where the user left its avatar.

Supported Values: 1 | 0
 
 
callback
optional

The jsonp callback

Example Values: myCallback
 
Example Request
 
callback({
    "average_rating": 4.6,
    "total": 1638,
    "recommend_to_friend": 1524,
    "reviews": [{
        id: 35865,
        created_at: "2016-01-22 16:03:28",
        since: "about 1 month ago",
        grade: 5,
        vote_plus: 9,
        vote_minus: 3,
        title: "This is great",
        text: "Really lovely experience.",
        product: {
           photo: "https://pbs.twimg.com/profile_images/1869012889/square_reziew_highres_bigger.png"
        },
        user: {
           username: "Chris",
           is_anonymous: 1,
           ip_address: "10.229.119.127",
           location: ""
        },
        metas: [ ],
        comments: [{
           id: "1945",
           comment: "Yeah it seems nice",
           created_at: "2016-01-23 08:30:26",
           since: "about 1 month ago",
           is_moderator: 0,
           username: "Finn H."
        }],
        urls: {
           vote_plus: "http://demo.reziew.com/review/vote/35865/plus",
           vote_minus: "http://demo.reziew.com/review/vote/35865/minus"
        }
    }, {
        "id": 1782,
        "created_at": "2016-02-28 03:14:26",
        ...
    }]
});