Hi, tell me if there is a way to display more than 5 reviews from google maps using the following code

r = requests.get('https://maps.googleapis.com/maps/api/place/details/json?placeid=<place_id>&key=<api_key>') 

And how to get an average rating such as, for example, here: http://investigationhotline.org/ Ps In my opinion, on this site, reviews are not tightened by api.

  • What specifically does not work? Your code is too general. - Mikhail Alekseevich
  • Yes, I sort of figured it out. To get more detailed and complete data about the place, you need to use the Google My Business API, and the query that was higher gives you just a little bit, specifically interested in the reviews (to pull them all). - Igor Lisenko

0