Google Maps Reviews Scraper avatar
Google Maps Reviews Scraper

Pricing

$0.50 / 1,000 reviews

Go to Store
Google Maps Reviews Scraper

Google Maps Reviews Scraper

Developed by

Compass

Compass

Maintained by Apify

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

FB

Scraper unable to find GoogleMap locations at times

Closed

fbonlong opened this issue
22 days ago

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

FB

fbonlong

22 days ago

run ID aXT0iX5QoinUmbVWJ

FB

fbonlong

21 days ago

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" }

aja_bar avatar

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"
}
FB

fbonlong

13 days ago

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?

aja_bar avatar

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