# Google Maps Reviews Scraper (`dbott23/google-maps-reviews-scraper`) Actor

Scrape reviews from any Google Maps business listing. Enter one or more place URLs and extract reviewer names, star ratings, review text, dates, local guide status, and owner responses. Uses residential proxies to bypass Google blocks.

- **URL**: https://apify.com/dbott23/google-maps-reviews-scraper.md
- **Developed by:** [Darren S](https://apify.com/dbott23) (community)
- **Categories:** Lead generation, SEO tools, Travel
- **Stats:** 2 total users, 1 monthly users, 100.0% runs succeeded, 0 bookmarks
- **User rating**: No ratings yet

## Pricing

from $30.00 / 1,000 results

This Actor is paid per event. You are not charged for the Apify platform usage, but only a fixed price for specific events.

Learn more: https://docs.apify.com/platform/actors/running/actors-in-store#pay-per-event

## What's an Apify Actor?

Actors are web data automations that power AI and operations. They run on the Apify platform to scrape websites, process data, connect APIs, and automate workflows.
In Batch mode, an Actor accepts a well-defined JSON input, performs an action which can take anything from a few seconds to a few hours,
and optionally produces a well-defined JSON output, datasets with results, or files in key-value store.
In Standby mode, an Actor provides a web server which can be used as a website, API, or an MCP server.
Actors are written with capital "A".

## How to integrate an Actor?

If asked about integration, you help developers integrate Actors into their projects.
You adapt to their stack and deliver integrations that are safe, well-documented, and production-ready.
The best way to integrate Actors is as follows.

- **AI agents and MCP clients** — the [Apify MCP server](https://docs.apify.com/integrations/mcp.md) at `https://mcp.apify.com` (remote, streamable HTTP, OAuth on first use).
- **Agentic workflows and local Actor development** — [Agent Skills](https://apify.com/.well-known/agent-skills/index.json) with the [Apify CLI](https://docs.apify.com/cli/docs.md): `npm install -g apify-cli`, then `apify login`.
- **JavaScript/TypeScript projects** — the official [JS/TS client](https://docs.apify.com/api/client/js/docs.md): `npm install apify-client`.
- **Python projects** — the official [Python client](https://docs.apify.com/api/client/python/docs.md): `pip install apify-client`.
- **Any other language** — the [REST API](https://docs.apify.com/api/v2.md).

For usage examples, see the [API](#api) section below.

For more details, see Apify documentation as [Markdown index](https://docs.apify.com/llms.txt) and [Markdown full-text](https://docs.apify.com/llms-full.txt).

# README

## Google Maps Reviews Scraper

Scrape reviews from any **Google Maps** business listing. Enter one or more place URLs and extract reviewer names, star ratings, review text, dates, local guide status, and owner responses.

### Features

- Scrape up to **500 reviews per place**
- Supports **multiple locations** in a single run
- Sort by **newest**, **most relevant**, **highest rating**, or **lowest rating**
- Extracts **owner responses** to reviews
- Identifies **Google Local Guides**
- Works with residential proxies to avoid blocks

### How to Get a Place URL

1. Open [Google Maps](https://www.google.com/maps)
2. Search for any business or location
3. Click on the place to open its details
4. Copy the URL from your browser's address bar
5. Paste it into the `placeUrls` input

### Input

| Field | Type | Description |
|-------|------|-------------|
| `placeUrls` | Array | Google Maps place URLs to scrape |
| `maxReviewsPerPlace` | Number | Max reviews per place (default: 50, max: 500) |
| `sortBy` | String | `newest`, `relevant`, `highest`, or `lowest` |

### Output

Each review is saved as a dataset item:

```json
{
  "place_name": "Eiffel Tower",
  "place_url": "https://www.google.com/maps/place/Eiffel+Tower/...",
  "place_rating": 4.7,
  "place_total_reviews": 243891,
  "reviewer_name": "John Smith",
  "is_local_guide": true,
  "reviewer_review_count": 47,
  "rating": 5,
  "date": "2 months ago",
  "text": "Absolutely stunning views from the top. Worth every penny!",
  "helpful_count": 12,
  "owner_response": null
}
```

### Use Cases

- **Reputation monitoring** — Track what customers say about your business
- **Competitor analysis** — Understand competitor strengths and weaknesses
- **Market research** — Gather location-based consumer sentiment
- **Lead generation** — Identify businesses with poor reviews as sales prospects
- **Local SEO** — Analyze review patterns for local search optimization

### Pricing

- **$1.00 per 1,000 reviews** scraped
- Actor start fee: $0.00005 per run

Scraping 500 reviews from 3 locations = ~$0.0015 total.

# Actor input Schema

## `placeUrls` (type: `array`):

List of Google Maps place URLs to scrape reviews from. Open any business on Google Maps and copy the URL from your browser address bar.

## `maxReviewsPerPlace` (type: `integer`):

Maximum number of reviews to scrape per place (default: 50, max: 500).

## `sortBy` (type: `string`):

Order in which reviews are returned.

## Actor input object example

```json
{
  "placeUrls": [
    "https://www.google.com/maps/place/Eiffel+Tower/@48.8583701,2.2944813,17z/data=!3m1!4b1!4m6!3m5!1s0x47e66e2964e34e2d:0x8ddca9ee380ef7e0!8m2!3d48.8583701!4d2.2944813!16zL20vMDJqODFz"
  ],
  "maxReviewsPerPlace": 50,
  "sortBy": "newest"
}
```

# API

You can run this Actor programmatically using our API. Below are code examples in JavaScript, Python, and CLI, as well as the OpenAPI specification and MCP server setup.

## JavaScript example

```javascript
import { ApifyClient } from 'apify-client';

// Initialize the ApifyClient with your Apify API token
// Replace the '<YOUR_API_TOKEN>' with your token
const client = new ApifyClient({
    token: '<YOUR_API_TOKEN>',
});

// Prepare Actor input
const input = {
    "placeUrls": [
        "https://www.google.com/maps/place/Eiffel+Tower/@48.8583701,2.2944813,17z/data=!3m1!4b1!4m6!3m5!1s0x47e66e2964e34e2d:0x8ddca9ee380ef7e0!8m2!3d48.8583701!4d2.2944813!16zL20vMDJqODFz"
    ]
};

// Run the Actor and wait for it to finish
const run = await client.actor("dbott23/google-maps-reviews-scraper").call(input);

// Fetch and print Actor results from the run's dataset (if any)
console.log('Results from dataset');
console.log(`💾 Check your data here: https://console.apify.com/storage/datasets/${run.defaultDatasetId}`);
const { items } = await client.dataset(run.defaultDatasetId).listItems();
items.forEach((item) => {
    console.dir(item);
});

// 📚 Want to learn more 📖? Go to → https://docs.apify.com/api/client/js/docs

```

## Python example

```python
from apify_client import ApifyClient

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

# Prepare the Actor input
run_input = { "placeUrls": ["https://www.google.com/maps/place/Eiffel+Tower/@48.8583701,2.2944813,17z/data=!3m1!4b1!4m6!3m5!1s0x47e66e2964e34e2d:0x8ddca9ee380ef7e0!8m2!3d48.8583701!4d2.2944813!16zL20vMDJqODFz"] }

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

# Fetch and print Actor results from the run's dataset (if there are any)
print("💾 Check your data here: https://console.apify.com/storage/datasets/" + run["defaultDatasetId"])
for item in client.dataset(run["defaultDatasetId"]).iterate_items():
    print(item)

# 📚 Want to learn more 📖? Go to → https://docs.apify.com/api/client/python/docs/quick-start

```

## CLI example

```bash
echo '{
  "placeUrls": [
    "https://www.google.com/maps/place/Eiffel+Tower/@48.8583701,2.2944813,17z/data=!3m1!4b1!4m6!3m5!1s0x47e66e2964e34e2d:0x8ddca9ee380ef7e0!8m2!3d48.8583701!4d2.2944813!16zL20vMDJqODFz"
  ]
}' |
apify call dbott23/google-maps-reviews-scraper --silent --output-dataset

```

## MCP server setup

```json
{
    "mcpServers": {
        "apify": {
            "command": "npx",
            "args": [
                "mcp-remote",
                "https://mcp.apify.com/?tools=dbott23/google-maps-reviews-scraper",
                "--header",
                "Authorization: Bearer <YOUR_API_TOKEN>"
            ]
        }
    }
}

```

## OpenAPI specification

Download the OpenAPI definition: https://api.apify.com/v2/acts/dgFST2VRFXGcb8PgX/builds/e8TFlPZuYFdfwZa0x/openapi.json
