# Reviews
Reviews are the reason we are here right. Lets get to it!
Backend applications can get client reviews from Lauded by utilizing the Lauded Integration (opens new window) package. Refer to this package to know more.
# List Reviews
GET https://api.lauded.io/api/client/reviews
curl https://api.lauded.io/api/client/reviews \
-H "Authorization: Bearer eyJ0eXA3asdk..."
# Parameters
items_per_page nullable|integer
The number of items to be displayed per page. The default is 10 items per page.
max_rating nullable|integer
Get reviews equal to or below this value. Integer between 1-5.
min_rating nullable|integer
Get reviews equal to or above this value. Integer between 1-5.
# Returns
A json with data
property that contains array of reviews
objects.
{
"id": 3,
"company_id": 2,
"rating": "5",
"message": "Eos aut esse occaecati tenetur. Aut ipsam sapiente fuga non.",
"reviewer_display_name": "Ms. Kylie Hintz",
"reviewer_photo_url": "https://lorempixel.com/640/480/?32051",
"review_reply": null,
"source_created_at": "2017-11-05 19:10:49",
"source_updated_at": "2005-09-23 15:51:58"
}