Reviews
Description: Shows user and professional reviews for products, services, or places.
API Response Structure:
{
"overallRating": {
"score": 4.5,
"totalReviews": 1500,
"distribution": {
"5": 1000,
"4": 300,
"3": 100,
"2": 50,
"1": 50
}
},
"reviews": [
{
"author": {
"name": "Reviewer Name",
"verified": true,
"badges": ["Top Reviewer", "Expert"],
"reviewCount": 150
},
"review": {
"rating": 5,
"title": "Review Title",
"content": "Review text...",
"date": "2023-08-15",
"pros": ["Pro 1", "Pro 2"],
"cons": ["Con 1", "Con 2"],
"photos": ["url1", "url2"],
"purchaseVerified": true
},
"helpful": {
"votes": 125,
"percentage": "95%"
}
}
],
"filters": {
"rating": ["5 star", "4+ star"],
"verified": true,
"withPhotos": true
},
"type": "reviews"
}
Fields:
-
overallRating
(object): Aggregate ratings-
score
(number): Average rating -
totalReviews
(number): Review count -
distribution
(object): Rating breakdown
-
-
reviews
(array): Individual reviews-
author
(object): Reviewer info -
review
(object): Review content -
helpful
(object): Usefulness metrics
-
-
filters
(object): Review filters -
type
(string): Always "reviews"