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

1import { ApifyClient } from 'apify-client';
2
3// Initialize the ApifyClient with your Apify API token
4const client = new ApifyClient({
5    token: '<YOUR_API_TOKEN>',
6});
7
8// Prepare Actor input
9const input = {
10    "targets": [
11        {
12            "id": "ChIJ3aqq5Q1ZwokRb9hLO7Gyxgw",
13            "url": "https://www.google.com/maps/place/?q=place_id:ChIJ3aqq5Q1ZwokRb9hLO7Gyxgw"
14        }
15    ],
16    "placeIds": [
17        "ChIJbf8C1yFxdDkR3n12P4DkKt0"
18    ],
19    "maxReviews": 20,
20    "reviewMaxTimeElapsed": "1 year"
21};
22
23(async () => {
24    // Run the Actor and wait for it to finish
25    const run = await client.actor("slash-scrape/advanced-google-maps-reviews-scraper").call(input);
26
27    // Fetch and print Actor results from the run's dataset (if any)
28    console.log('Results from dataset');
29    console.log(`๐Ÿ’พ Check your data here: https://console.apify.com/storage/datasets/${run.defaultDatasetId}`);
30    const { items } = await client.dataset(run.defaultDatasetId).listItems();
31    items.forEach((item) => {
32        console.dir(item);
33    });
34})();
35
36// ๐Ÿ“š Want to learn more ๐Ÿ“–? Go to โ†’ https://docs.apify.com/api/client/js/docs
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