Google Maps Reviews Scraper

  • compass/google-maps-reviews-scraper
  • Modified
  • Users 1.1k
  • Runs 63.5k
  • 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.

from apify_client import ApifyClient

# Initialize the ApifyClient with your API token
client = ApifyClient("<YOUR_API_TOKEN>")

# Prepare the Actor input
run_input = {
    "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",
}

# Run the Actor and wait for it to finish
run = client.actor("compass/google-maps-reviews-scraper").call(run_input=run_input)

# Fetch and print Actor results from the run's dataset (if there are any)
for item in client.dataset(run["defaultDatasetId"]).iterate_items():
    print(item)