
Google Maps Reviews Scraper
- compass/google-maps-reviews-scraper
- Modified
- Users 1.1k
- Runs 63.4k
- Created by
Compass
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.
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.
import { ApifyClient } from 'apify-client';
// Initialize the ApifyClient with API token
const client = new ApifyClient({
token: '<YOUR_API_TOKEN>',
});
// Prepare Actor input
const 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"
};
(async () => {
// Run the Actor and wait for it to finish
const run = await client.actor("compass/google-maps-reviews-scraper").call(input);
// Fetch and print Actor results from the run's dataset (if any)
console.log('Results from dataset');
const { items } = await client.dataset(run.defaultDatasetId).listItems();
items.forEach((item) => {
console.dir(item);
});
})();