Advanced Google Maps Reviews Scraper avatar
Advanced Google Maps Reviews Scraper
Try for free

3 days trial then $10.00/month - No credit card required now

View all Actors
Advanced Google Maps Reviews Scraper

Advanced Google Maps Reviews Scraper

slash-scrape/advanced-google-maps-reviews-scraper
Try for free

3 days trial then $10.00/month - No credit card required now

This Google Maps Reviews scraper lets you collect reviews for places from public Google Maps pages. You can get the star rating, review text, photos and images, response from the place, and (optionally) some details about the reviewer like their name and a link to their profile.

The code examples below show how to run the Actor and get its results. To run the code, you need to have an Apify account. Replace <YOUR_API_TOKEN> in the code with your API token, which you can find under Settings > Integrations in Apify Console. Learn more

1# Set API token
2API_TOKEN=<YOUR_API_TOKEN>
3
4# Prepare Actor input
5cat > input.json <<'EOF'
6{
7  "targets": [
8    {
9      "id": "ChIJ3aqq5Q1ZwokRb9hLO7Gyxgw",
10      "url": "https://www.google.com/maps/place/?q=place_id:ChIJ3aqq5Q1ZwokRb9hLO7Gyxgw"
11    }
12  ],
13  "placeIds": [
14    "ChIJbf8C1yFxdDkR3n12P4DkKt0"
15  ],
16  "maxReviews": 20,
17  "reviewMaxTimeElapsed": "1 year"
18}
19EOF
20
21# Run the Actor using an HTTP API
22# See the full API reference at https://docs.apify.com/api/v2
23curl "https://api.apify.com/v2/acts/slash-scrape~advanced-google-maps-reviews-scraper/runs?token=$API_TOKEN" \
24  -X POST \
25  -d @input.json \
26  -H 'Content-Type: application/json'
Developer
Maintained by Community
Actor metrics
  • 11 monthly users
  • 1 star
  • 98.4% runs succeeded
  • 79 days response time
  • Created in Dec 2023
  • Modified 5 months ago