Google Maps Reviews Scraper

  • compass/google-maps-reviews-scraper
  • Modified
  • Users 1k
  • Runs 59.2k
  • Created by Author's avatarCompass

Google Maps Reviews Scraper extracts all reviews for a single place on Google Maps. Just enter the URL of the location you want to scrape and you'll get a dataset of all reviews.

Free trial for 14 days

Then $30.00/month

No credit card required now

Google Maps Reviews Scraper

Free trial for 14 days

Then $30.00/month

To run the code examples, you need to have an Apify account. Replace <YOUR_API_TOKEN> in the code with your API token. For a more detailed explanation, please read about running Actors via the API in Apify Docs.

# Set API token
API_TOKEN=<YOUR_API_TOKEN>

# Prepare Actor input
cat > input.json <<'EOF'
{
  "startUrls": [
    {
      "url": "https://www.google.com/maps/place/Yellowstone+National+Park/@44.5857951,-110.5140571,9z/data=!3m1!4b1!4m5!3m4!1s0x5351e55555555555:0xaca8f930348fe1bb!8m2!3d44.427963!4d-110.588455?hl=en-GB"
    }
  ],
  "maxReviews": 100,
  "language": "en"
}
EOF

# Run the Actor
curl "https://api.apify.com/v2/acts/compass~google-maps-reviews-scraper/runs?token=$API_TOKEN" \
  -X POST \
  -d @input.json \
  -H 'Content-Type: application/json'