
Google Maps Reviews Scraper
Pricing
$0.50 / 1,000 reviews

Google Maps Reviews Scraper
Extract all reviews of Google Maps places using place URLs. Get review text, published date, response from owner, review URL, and reviewer's details. Download scraped data, run the scraper via API, schedule and monitor runs or integrate with other tools.
4.8 (29)
Pricing
$0.50 / 1,000 reviews
272
Total users
10K
Monthly users
2.4K
Runs succeeded
>99%
Issues response
25 days
Last modified
2 days ago
Scraper unable to find GoogleMap locations at times
Closed
Been having issues where the scraper is unable to find GoogleMap locations at times.
Can you explain the reason? Here is an example? https://www.google.com/maps/place/Bala+Baya+Restaurant+Bankside/
It opens on the browser but scraper returns no location found
fbonlong
run ID aXT0iX5QoinUmbVWJ
fbonlong
Here is another example where I am passing placeID: ChIJ0c3Yd0LY2EcR935EbhrYPng
It returns the URL below but says error: no_reviews https://www.google.com/maps/search/?api=1&query=ChIJ0c3Yd0LY2EcR935EbhrYPng&query_place_id=ChIJ0c3Yd0LY2EcR935EbhrYPng
Here is my JSON { "language": "en", "maxReviews": 99999, "personalData": true, "reviewsSort": "lowestRanking", "reviewsStartDate": "90 days", "placeIds": [ "ChIJ0c3Yd0LY2EcR935EbhrYPng" ], "reviewsOrigin": "all" }
Hi there, thank you for reaching out and waiting. I see the reviewsSort
is set to "lowestRanking". If there are no low-ranked reviews in the specified time frame, this could result in no reviews being found.
Try adjusting the input like this (sorting them from the newest) - you should get the results you're after:
{"language": "en","maxReviews": 99999,"personalData": true,"placeIds": ["ChIJ0c3Yd0LY2EcR935EbhrYPng"],"reviewsOrigin": "all","reviewsSort": "newest","reviewsStartDate": "90 days"}
fbonlong
Hi Andrea,
Thank you for getting back to me.
I am only trying to retrieve 1 and 2 star reviews, hence the reason for
having the reviewsSort
present in the JSON input.
Can you think of a better way to do this?
I see - then you need to change the time frame - there are none with such rating in the last 90 days, that's why there are 0 results. Cheers, Andrea