Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Google Places API: Place Details limited to 5 Reviews

https://developers.google.com/places/documentation/#PlaceDetails

The "reviews" output list is apparently limited to the top 5 reviews. This isn't mentioned at all in the documentation. Is there way to get paginated results or more than 5?

like image 769
David Rodecker Avatar asked Jul 24 '12 03:07

David Rodecker


2 Answers

This is explicit stated in the documentation here, under the reviews[] field explaination:

reviews[] a JSON array of up to five reviews.

There is currently no way to retrieve more than 5 reviews. If you think this would be a valuable feature you can submit a Places API - Feature Request here.

like image 55
Chris Green Avatar answered Oct 12 '22 13:10

Chris Green


You can now actually get all of the reviews, all you need to do is use a Google's My Business API. Specifically the batchGetReviews call.

There is more work to do for you, but it meets all requirements for sorting/filtering reviews.

Google My Business API

like image 23
Shakti Avatar answered Oct 12 '22 13:10

Shakti