# Google Maps Reviews Scraper | 💰 $0.25 per 1,000 results (`solidcode/google-maps-reviews-scraper`) Actor

\[💰 $0.25 / 1K] Scrape Google Maps reviews at scale. Extract review text, ratings, reviewer details, owner responses, photos, and more for any place on Google Maps.

- **URL**: https://apify.com/solidcode/google-maps-reviews-scraper.md
- **Developed by:** [SolidCode](https://apify.com/solidcode) (community)
- **Categories:** Automation, Other, Developer tools
- **Stats:** 23 total users, 7 monthly users, 98.9% runs succeeded, 0 bookmarks
- **User rating**: 5.00 out of 5 stars

## Pricing

from $0.25 / 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 a software tools running on the Apify platform, for all kinds of web data extraction and automation use cases.
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.

In JavaScript/TypeScript projects, use official [JavaScript/TypeScript client](https://docs.apify.com/api/client/js.md):

```bash
npm install apify-client
```

In Python projects, use official [Python client library](https://docs.apify.com/api/client/python.md):

```bash
pip install apify-client
```

In shell scripts, use [Apify CLI](https://docs.apify.com/cli/docs.md):

````bash
# MacOS / Linux
curl -fsSL https://apify.com/install-cli.sh | bash
# Windows
irm https://apify.com/install-cli.ps1 | iex
```bash

In AI frameworks, you might use the [Apify MCP server](https://docs.apify.com/platform/integrations/mcp.md).

If your project is in a different language, use 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

Extract Google Maps reviews at scale — review text, star ratings, reviewer profiles, owner responses, photos, and Local Guide badges for any place on Google Maps. Supports all sort orders, date filtering, 30+ languages, and 50+ countries. Collect 10 reviews or 50,000 from a single place.

### Features

<table>
<tr>
  <td><strong>Up to 50,000 reviews per place</strong></td>
  <td>Collect 10, 1,000, or tens of thousands of reviews from any Google Maps listing</td>
</tr>
<tr>
  <td><strong>Multiple input methods</strong></td>
  <td>Paste Google Maps URLs, place IDs (ChIJ...), or search by name</td>
</tr>
<tr>
  <td><strong>Date-based collection</strong></td>
  <td>Set a start date to collect only recent reviews — stops automatically at older reviews, saving you money</td>
</tr>
<tr>
  <td><strong>4 sort options</strong></td>
  <td>Most Relevant, Newest First, Highest Rating, or Lowest Rating</td>
</tr>
<tr>
  <td><strong>Rich reviewer data</strong></td>
  <td>Names, profile URLs, photos, review counts, and Local Guide badges</td>
</tr>
<tr>
  <td><strong>Owner responses</strong></td>
  <td>Business replies captured alongside the original review</td>
</tr>
<tr>
  <td><strong>Review photos</strong></td>
  <td>Photo URLs attached to individual reviews</td>
</tr>
<tr>
  <td><strong>30+ languages</strong></td>
  <td>English, Spanish, Japanese, Arabic, and many more</td>
</tr>
<tr>
  <td><strong>Lowest price on Apify</strong></td>
  <td>$3.00 per 1,000 reviews with no hidden fees</td>
</tr>
</table>

### Use Cases

#### Reputation Monitoring and Brand Management

- Track new reviews across all your locations in one place
- Monitor competitor review sentiment and trends over time
- Identify recurring complaints or praise themes for operational improvements

#### Market Research and Competitive Intelligence

- Compare review volumes and ratings across competitors in a market
- Analyze customer sentiment by category (restaurants, hotels, clinics, etc.)
- Spot emerging trends from what customers praise or criticize

#### Lead Generation and Sales

- Find businesses with low ratings that could benefit from your service
- Identify locations with high review volume as potential partnership targets
- Build prospect lists filtered by rating and review activity

#### Academic and Data Science

- Gather large review datasets for NLP and sentiment analysis research
- Study rating distributions and reviewer behavior patterns
- Analyze geographic and temporal trends in customer feedback

### Getting Started

#### Paste Place URLs

The fastest way to start — paste one or more Google Maps place URLs:

```json
{
    "placeUrls": [
        "https://www.google.com/maps/place/Eiffel+Tower/@48.8583701,2.2944813"
    ],
    "maxReviewsPerPlace": 100
}
````

#### Search by Name

Don't have a URL? Search for the place by name:

```json
{
    "searchQueries": ["Central Park New York", "Sagrada Familia Barcelona"],
    "maxReviewsPerPlace": 200
}
```

#### Recent Reviews Only

Collect only reviews from 2024 onwards. The scraper automatically sorts by newest and stops when it reaches reviews older than your date — no wasted compute:

```json
{
    "placeUrls": ["https://www.google.com/maps/place/..."],
    "reviewsStartDate": "2024-01-01"
}
```

#### Multi-Language Reviews

Get reviews displayed in a specific language:

```json
{
    "searchQueries": ["Tokyo Tower"],
    "maxReviewsPerPlace": 100,
    "language": "ja",
    "countryCode": "JP"
}
```

### Input

#### Places

<table>
<thead>
<tr>
  <th>Parameter</th>
  <th>Type</th>
  <th>Default</th>
  <th>Description</th>
</tr>
</thead>
<tbody>
<tr>
  <td><code>placeUrls</code></td>
  <td>string[]</td>
  <td><code>[]</code></td>
  <td>Google Maps place URLs or place IDs (ChIJ...). Paste one per line.</td>
</tr>
<tr>
  <td><code>searchQueries</code></td>
  <td>string[]</td>
  <td><code>[]</code></td>
  <td>Search queries to find places (e.g., "Eiffel Tower Paris"). One query per line.</td>
</tr>
</tbody>
</table>

#### Options

<table>
<thead>
<tr>
  <th>Parameter</th>
  <th>Type</th>
  <th>Default</th>
  <th>Description</th>
</tr>
</thead>
<tbody>
<tr>
  <td><code>maxReviewsPerPlace</code></td>
  <td>integer</td>
  <td><code>100</code></td>
  <td>Maximum reviews to collect per place. Set to 0 to collect all reviews (up to 50,000).</td>
</tr>
<tr>
  <td><code>sortBy</code></td>
  <td>string</td>
  <td><code>"relevant"</code></td>
  <td>Sort order: Most Relevant, Newest First, Highest Rating, or Lowest Rating.</td>
</tr>
<tr>
  <td><code>reviewsStartDate</code></td>
  <td>string</td>
  <td></td>
  <td>Only collect reviews on or after this date (YYYY-MM-DD). Automatically sorts by newest and stops at the date boundary.</td>
</tr>
<tr>
  <td><code>language</code></td>
  <td>string</td>
  <td><code>"en"</code></td>
  <td>Language for the Google Maps interface. Supports 30+ languages including English, Spanish, French, German, Japanese, Arabic, and more.</td>
</tr>
<tr>
  <td><code>countryCode</code></td>
  <td>string</td>
  <td>Auto-detect</td>
  <td>Country context for results. Supports 50+ countries. Leave empty to let Google decide automatically.</td>
</tr>
</tbody>
</table>

### Output

Each review is returned as a structured JSON object with up to 20 fields:

```json
{
    "placeName": "Carmine's - Times Square",
    "placeUrl": "https://www.google.com/maps/place/...",
    "reviewerName": "Sarah M.",
    "reviewerUrl": "https://www.google.com/maps/contrib/1234567890",
    "reviewerPhotoUrl": "https://lh3.googleusercontent.com/...",
    "isLocalGuide": false,
    "rating": 5,
    "reviewText": "Incredible family-style Italian food! The portions are massive and perfect for sharing. We had the vodka rigatoni and chicken parm — both outstanding. Service was attentive even on a busy Saturday night.",
    "publishedAt": "2 months ago",
    "publishedAtTimestamp": 1706745600,
    "language": "en",
    "responseFromOwnerText": "Thank you for the wonderful review, Sarah! We're so glad you enjoyed the rigatoni. Hope to see you again soon!",
    "responseFromOwnerDate": "2024-02-15",
    "reviewPhotoUrls": ["https://lh3.googleusercontent.com/..."],
    "reviewId": "ChdDSUhNMG9...",
    "reviewUrl": "https://www.google.com/maps/reviews/data=ChdDSUhNMG9...",
    "source": "Google",
    "placeFeatureId": "0x89c259af3367d0f5:0x3bdb6f7c1c5b8b5d"
}
```

#### Output Fields

<table>
<thead>
<tr>
  <th>Field</th>
  <th>Type</th>
  <th>Description</th>
</tr>
</thead>
<tbody>
<tr>
  <td><code>placeName</code></td>
  <td>string</td>
  <td>Name of the reviewed place</td>
</tr>
<tr>
  <td><code>placeUrl</code></td>
  <td>string</td>
  <td>Google Maps URL of the place</td>
</tr>
<tr>
  <td><code>placeFeatureId</code></td>
  <td>string</td>
  <td>Google internal feature ID for the place</td>
</tr>
<tr>
  <td><code>reviewerName</code></td>
  <td>string</td>
  <td>Reviewer's display name</td>
</tr>
<tr>
  <td><code>reviewerUrl</code></td>
  <td>string</td>
  <td>Reviewer's Google Maps profile URL</td>
</tr>
<tr>
  <td><code>reviewerPhotoUrl</code></td>
  <td>string</td>
  <td>Reviewer's profile photo URL</td>
</tr>
<tr>
  <td><code>reviewerNumberOfReviews</code></td>
  <td>number</td>
  <td>Reviewer's total review count (when available)</td>
</tr>
<tr>
  <td><code>reviewerNumberOfPhotos</code></td>
  <td>number</td>
  <td>Reviewer's total photo count (when available)</td>
</tr>
<tr>
  <td><code>isLocalGuide</code></td>
  <td>boolean</td>
  <td>Whether the reviewer is a Local Guide (when available)</td>
</tr>
<tr>
  <td><code>rating</code></td>
  <td>number</td>
  <td>Star rating (1-5)</td>
</tr>
<tr>
  <td><code>reviewText</code></td>
  <td>string</td>
  <td>Full review text</td>
</tr>
<tr>
  <td><code>publishedAt</code></td>
  <td>string</td>
  <td>Relative publish date (e.g., "2 months ago")</td>
</tr>
<tr>
  <td><code>publishedAtTimestamp</code></td>
  <td>number</td>
  <td>Unix timestamp of publication</td>
</tr>
<tr>
  <td><code>language</code></td>
  <td>string</td>
  <td>Language code of the review</td>
</tr>
<tr>
  <td><code>visitedDate</code></td>
  <td>string</td>
  <td>Visited-date label (when available)</td>
</tr>
<tr>
  <td><code>responseFromOwnerText</code></td>
  <td>string</td>
  <td>Business owner's reply text</td>
</tr>
<tr>
  <td><code>responseFromOwnerDate</code></td>
  <td>string</td>
  <td>Date the owner replied (YYYY-MM-DD)</td>
</tr>
<tr>
  <td><code>reviewPhotoUrls</code></td>
  <td>string[]</td>
  <td>Photos attached to the review</td>
</tr>
<tr>
  <td><code>reviewId</code></td>
  <td>string</td>
  <td>Unique review identifier</td>
</tr>
<tr>
  <td><code>reviewUrl</code></td>
  <td>string</td>
  <td>Direct link to the review</td>
</tr>
<tr>
  <td><code>source</code></td>
  <td>string</td>
  <td>Upstream review source label (when present)</td>
</tr>
</tbody>
</table>

### Tips for Best Results

#### Choosing a Sort Order

- **Most Relevant** (default) — Google's ranking based on recency, helpfulness, and rating
- **Newest First** — Best for monitoring recent feedback or tracking trends over time
- **Highest Rating** — Returns 5-star reviews first, then 4-star, etc. Set a low `maxReviewsPerPlace` to get mostly positive reviews
- **Lowest Rating** — Returns 1-star reviews first, useful for finding complaints and pain points

#### Maximizing Coverage

- Set `maxReviewsPerPlace` to `0` to collect up to 50,000 reviews
- Use `reviewsStartDate` to collect only recent reviews — the scraper stops at your date boundary, saving compute costs
- For precise rating filtering, export all reviews and filter by the `rating` field in your spreadsheet or downstream tool

#### Working with Multiple Places

- Mix URLs and search queries in the same run
- Each place is processed sequentially with automatic pacing
- Failed places are skipped without stopping the run — check the log for details

#### Large-Scale Collection

- Use **residential proxies** for best success rates on large runs
- For places with 10,000+ reviews, consider splitting across multiple runs with different sort orders
- Results are pushed to your dataset as they're collected — no need to wait for the full run to finish

### Pricing

**$3.00 per 1,000 reviews** — among the lowest prices on Apify for Google Maps review data.

<table>
<thead>
<tr>
  <th>Reviews</th>
  <th>Cost</th>
</tr>
</thead>
<tbody>
<tr>
  <td>100</td>
  <td>$0.30</td>
</tr>
<tr>
  <td>1,000</td>
  <td>$3.00</td>
</tr>
<tr>
  <td>10,000</td>
  <td>$30.00</td>
</tr>
<tr>
  <td>100,000</td>
  <td>$300.00</td>
</tr>
</tbody>
</table>

Platform fees (compute, proxy, storage) are additional and depend on your Apify plan.

### Integrations

Export your data in JSON, CSV, Excel, XML, or RSS formats. Connect to 1,500+ apps:

- **Zapier** / **Make** / **n8n** — Workflow automation
- **Google Sheets** — Direct spreadsheet export
- **Slack** / **Email** — Notifications when new results are ready
- **Webhooks** — Custom API integrations
- **Apify API** — Full programmatic access for scheduling, monitoring, and data retrieval

### Legal and Ethical Use

This actor is designed for legitimate reputation monitoring, market research, and competitive intelligence. Users are responsible for complying with applicable laws and Google's Terms of Service. Do not use collected data for spam, harassment, or any illegal purpose.

# Actor input Schema

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

Paste Google Maps place URLs here. You can also paste the place identifier from the URL.

## `searchQueries` (type: `array`):

Search terms for places you want to scrape, such as 'Eiffel Tower Paris' or 'Central Park New York'.

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

Maximum number of reviews to scrape per place. Set to 0 for all reviews. Recommended: 100-1000 to keep costs reasonable.

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

Choose the order in which reviews should be collected.

## `language` (type: `string`):

Language used for Google Maps and the review text returned when available.

## `countryCode` (type: `string`):

Country to use when Google Maps resolves places. Leave empty to let Google decide automatically.

## `reviewsStartDate` (type: `string`):

Only collect reviews from this date onward. Use the format YYYY-MM-DD, for example 2024-01-15. Leave empty to collect all reviews.

## Actor input object example

```json
{
  "placeUrls": [],
  "searchQueries": [],
  "maxReviewsPerPlace": 100,
  "sortBy": "relevant",
  "language": "en"
}
```

# Actor output Schema

## `reviews` (type: `string`):

Table of scraped reviews with key fields.

## `details` (type: `string`):

Detailed review data including photos and owner responses.

# 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": [],
    "searchQueries": [],
    "maxReviewsPerPlace": 100,
    "sortBy": "relevant",
    "language": "en"
};

// Run the Actor and wait for it to finish
const run = await client.actor("solidcode/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": [],
    "searchQueries": [],
    "maxReviewsPerPlace": 100,
    "sortBy": "relevant",
    "language": "en",
}

# Run the Actor and wait for it to finish
run = client.actor("solidcode/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": [],
  "searchQueries": [],
  "maxReviewsPerPlace": 100,
  "sortBy": "relevant",
  "language": "en"
}' |
apify call solidcode/google-maps-reviews-scraper --silent --output-dataset

```

## MCP server setup

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

```

## OpenAPI specification

```json
{
    "openapi": "3.0.1",
    "info": {
        "title": "Google Maps Reviews Scraper | 💰 $0.25 per 1,000 results",
        "description": "[💰 $0.25 / 1K] Scrape Google Maps reviews at scale. Extract review text, ratings, reviewer details, owner responses, photos, and more for any place on Google Maps.",
        "version": "1.0",
        "x-build-id": "fz2HQMW7LFnSxAnl4"
    },
    "servers": [
        {
            "url": "https://api.apify.com/v2"
        }
    ],
    "paths": {
        "/acts/solidcode~google-maps-reviews-scraper/run-sync-get-dataset-items": {
            "post": {
                "operationId": "run-sync-get-dataset-items-solidcode-google-maps-reviews-scraper",
                "x-openai-isConsequential": false,
                "summary": "Executes an Actor, waits for its completion, and returns Actor's dataset items in response.",
                "tags": [
                    "Run Actor"
                ],
                "requestBody": {
                    "required": true,
                    "content": {
                        "application/json": {
                            "schema": {
                                "$ref": "#/components/schemas/inputSchema"
                            }
                        }
                    }
                },
                "parameters": [
                    {
                        "name": "token",
                        "in": "query",
                        "required": true,
                        "schema": {
                            "type": "string"
                        },
                        "description": "Enter your Apify token here"
                    }
                ],
                "responses": {
                    "200": {
                        "description": "OK"
                    }
                }
            }
        },
        "/acts/solidcode~google-maps-reviews-scraper/runs": {
            "post": {
                "operationId": "runs-sync-solidcode-google-maps-reviews-scraper",
                "x-openai-isConsequential": false,
                "summary": "Executes an Actor and returns information about the initiated run in response.",
                "tags": [
                    "Run Actor"
                ],
                "requestBody": {
                    "required": true,
                    "content": {
                        "application/json": {
                            "schema": {
                                "$ref": "#/components/schemas/inputSchema"
                            }
                        }
                    }
                },
                "parameters": [
                    {
                        "name": "token",
                        "in": "query",
                        "required": true,
                        "schema": {
                            "type": "string"
                        },
                        "description": "Enter your Apify token here"
                    }
                ],
                "responses": {
                    "200": {
                        "description": "OK",
                        "content": {
                            "application/json": {
                                "schema": {
                                    "$ref": "#/components/schemas/runsResponseSchema"
                                }
                            }
                        }
                    }
                }
            }
        },
        "/acts/solidcode~google-maps-reviews-scraper/run-sync": {
            "post": {
                "operationId": "run-sync-solidcode-google-maps-reviews-scraper",
                "x-openai-isConsequential": false,
                "summary": "Executes an Actor, waits for completion, and returns the OUTPUT from Key-value store in response.",
                "tags": [
                    "Run Actor"
                ],
                "requestBody": {
                    "required": true,
                    "content": {
                        "application/json": {
                            "schema": {
                                "$ref": "#/components/schemas/inputSchema"
                            }
                        }
                    }
                },
                "parameters": [
                    {
                        "name": "token",
                        "in": "query",
                        "required": true,
                        "schema": {
                            "type": "string"
                        },
                        "description": "Enter your Apify token here"
                    }
                ],
                "responses": {
                    "200": {
                        "description": "OK"
                    }
                }
            }
        }
    },
    "components": {
        "schemas": {
            "inputSchema": {
                "type": "object",
                "properties": {
                    "placeUrls": {
                        "title": "Place URLs",
                        "type": "array",
                        "description": "Paste Google Maps place URLs here. You can also paste the place identifier from the URL.",
                        "items": {
                            "type": "string"
                        }
                    },
                    "searchQueries": {
                        "title": "Search Queries",
                        "type": "array",
                        "description": "Search terms for places you want to scrape, such as 'Eiffel Tower Paris' or 'Central Park New York'.",
                        "items": {
                            "type": "string"
                        }
                    },
                    "maxReviewsPerPlace": {
                        "title": "Max Reviews Per Place",
                        "minimum": 0,
                        "type": "integer",
                        "description": "Maximum number of reviews to scrape per place. Set to 0 for all reviews. Recommended: 100-1000 to keep costs reasonable.",
                        "default": 100
                    },
                    "sortBy": {
                        "title": "Sort Reviews By",
                        "enum": [
                            "relevant",
                            "newest",
                            "highest",
                            "lowest"
                        ],
                        "type": "string",
                        "description": "Choose the order in which reviews should be collected.",
                        "default": "relevant"
                    },
                    "language": {
                        "title": "Language",
                        "enum": [
                            "en",
                            "nl",
                            "de",
                            "fr",
                            "es",
                            "it",
                            "pt",
                            "pl",
                            "cs",
                            "da",
                            "sv",
                            "no",
                            "fi",
                            "el",
                            "tr",
                            "ar",
                            "he",
                            "ja",
                            "ko",
                            "zh-CN",
                            "zh-TW",
                            "th",
                            "vi",
                            "id",
                            "ms",
                            "hi",
                            "ru",
                            "uk",
                            "ro",
                            "hu",
                            "hr",
                            "bg",
                            "sk"
                        ],
                        "type": "string",
                        "description": "Language used for Google Maps and the review text returned when available.",
                        "default": "en"
                    },
                    "countryCode": {
                        "title": "Country",
                        "enum": [
                            "",
                            "US",
                            "GB",
                            "CA",
                            "AU",
                            "NZ",
                            "AD",
                            "AT",
                            "BE",
                            "CH",
                            "DE",
                            "ES",
                            "FR",
                            "IE",
                            "IT",
                            "LI",
                            "LU",
                            "MC",
                            "NL",
                            "PT",
                            "DK",
                            "FI",
                            "IS",
                            "NO",
                            "SE",
                            "AL",
                            "BA",
                            "BG",
                            "BY",
                            "CZ",
                            "EE",
                            "HR",
                            "HU",
                            "LT",
                            "LV",
                            "MD",
                            "ME",
                            "MK",
                            "PL",
                            "RO",
                            "RS",
                            "SI",
                            "SK",
                            "CY",
                            "GR",
                            "MT",
                            "TR",
                            "GE",
                            "AM",
                            "AZ",
                            "AE",
                            "BH",
                            "IL",
                            "IQ",
                            "IR",
                            "JO",
                            "KW",
                            "LB",
                            "OM",
                            "PS",
                            "QA",
                            "SA",
                            "SY",
                            "YE",
                            "DZ",
                            "EG",
                            "LY",
                            "MA",
                            "TN",
                            "BF",
                            "BJ",
                            "CI",
                            "CV",
                            "GH",
                            "GM",
                            "GN",
                            "GW",
                            "LR",
                            "ML",
                            "MR",
                            "NE",
                            "NG",
                            "SL",
                            "SN",
                            "TG",
                            "CD",
                            "CF",
                            "CG",
                            "CM",
                            "GA",
                            "GQ",
                            "ST",
                            "TD",
                            "BI",
                            "DJ",
                            "ER",
                            "ET",
                            "KE",
                            "KM",
                            "MG",
                            "MU",
                            "MW",
                            "MZ",
                            "RW",
                            "SC",
                            "SO",
                            "SS",
                            "SD",
                            "TZ",
                            "UG",
                            "AO",
                            "BW",
                            "LS",
                            "NA",
                            "SZ",
                            "ZA",
                            "ZM",
                            "ZW",
                            "AF",
                            "BD",
                            "BT",
                            "IN",
                            "LK",
                            "MV",
                            "NP",
                            "PK",
                            "CN",
                            "HK",
                            "JP",
                            "KR",
                            "MN",
                            "MO",
                            "TW",
                            "BN",
                            "ID",
                            "KH",
                            "LA",
                            "MM",
                            "MY",
                            "PH",
                            "SG",
                            "TH",
                            "TL",
                            "VN",
                            "KG",
                            "KZ",
                            "TJ",
                            "TM",
                            "UZ",
                            "RU",
                            "UA",
                            "AR",
                            "BO",
                            "BR",
                            "CL",
                            "CO",
                            "EC",
                            "GY",
                            "PE",
                            "PY",
                            "SR",
                            "UY",
                            "VE",
                            "BZ",
                            "CR",
                            "GT",
                            "HN",
                            "MX",
                            "NI",
                            "PA",
                            "SV",
                            "BB",
                            "BS",
                            "CU",
                            "DO",
                            "HT",
                            "JM",
                            "PR",
                            "TT",
                            "FJ",
                            "PG",
                            "SB",
                            "TO",
                            "VU",
                            "WS"
                        ],
                        "type": "string",
                        "description": "Country to use when Google Maps resolves places. Leave empty to let Google decide automatically."
                    },
                    "reviewsStartDate": {
                        "title": "Reviews Start Date",
                        "pattern": "^\\d{4}-\\d{2}-\\d{2}$",
                        "type": "string",
                        "description": "Only collect reviews from this date onward. Use the format YYYY-MM-DD, for example 2024-01-15. Leave empty to collect all reviews."
                    }
                }
            },
            "runsResponseSchema": {
                "type": "object",
                "properties": {
                    "data": {
                        "type": "object",
                        "properties": {
                            "id": {
                                "type": "string"
                            },
                            "actId": {
                                "type": "string"
                            },
                            "userId": {
                                "type": "string"
                            },
                            "startedAt": {
                                "type": "string",
                                "format": "date-time",
                                "example": "2025-01-08T00:00:00.000Z"
                            },
                            "finishedAt": {
                                "type": "string",
                                "format": "date-time",
                                "example": "2025-01-08T00:00:00.000Z"
                            },
                            "status": {
                                "type": "string",
                                "example": "READY"
                            },
                            "meta": {
                                "type": "object",
                                "properties": {
                                    "origin": {
                                        "type": "string",
                                        "example": "API"
                                    },
                                    "userAgent": {
                                        "type": "string"
                                    }
                                }
                            },
                            "stats": {
                                "type": "object",
                                "properties": {
                                    "inputBodyLen": {
                                        "type": "integer",
                                        "example": 2000
                                    },
                                    "rebootCount": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "restartCount": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "resurrectCount": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "computeUnits": {
                                        "type": "integer",
                                        "example": 0
                                    }
                                }
                            },
                            "options": {
                                "type": "object",
                                "properties": {
                                    "build": {
                                        "type": "string",
                                        "example": "latest"
                                    },
                                    "timeoutSecs": {
                                        "type": "integer",
                                        "example": 300
                                    },
                                    "memoryMbytes": {
                                        "type": "integer",
                                        "example": 1024
                                    },
                                    "diskMbytes": {
                                        "type": "integer",
                                        "example": 2048
                                    }
                                }
                            },
                            "buildId": {
                                "type": "string"
                            },
                            "defaultKeyValueStoreId": {
                                "type": "string"
                            },
                            "defaultDatasetId": {
                                "type": "string"
                            },
                            "defaultRequestQueueId": {
                                "type": "string"
                            },
                            "buildNumber": {
                                "type": "string",
                                "example": "1.0.0"
                            },
                            "containerUrl": {
                                "type": "string"
                            },
                            "usage": {
                                "type": "object",
                                "properties": {
                                    "ACTOR_COMPUTE_UNITS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATASET_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATASET_WRITES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "KEY_VALUE_STORE_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "KEY_VALUE_STORE_WRITES": {
                                        "type": "integer",
                                        "example": 1
                                    },
                                    "KEY_VALUE_STORE_LISTS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "REQUEST_QUEUE_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "REQUEST_QUEUE_WRITES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATA_TRANSFER_INTERNAL_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATA_TRANSFER_EXTERNAL_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "PROXY_RESIDENTIAL_TRANSFER_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "PROXY_SERPS": {
                                        "type": "integer",
                                        "example": 0
                                    }
                                }
                            },
                            "usageTotalUsd": {
                                "type": "number",
                                "example": 0.00005
                            },
                            "usageUsd": {
                                "type": "object",
                                "properties": {
                                    "ACTOR_COMPUTE_UNITS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATASET_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATASET_WRITES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "KEY_VALUE_STORE_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "KEY_VALUE_STORE_WRITES": {
                                        "type": "number",
                                        "example": 0.00005
                                    },
                                    "KEY_VALUE_STORE_LISTS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "REQUEST_QUEUE_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "REQUEST_QUEUE_WRITES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATA_TRANSFER_INTERNAL_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATA_TRANSFER_EXTERNAL_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "PROXY_RESIDENTIAL_TRANSFER_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "PROXY_SERPS": {
                                        "type": "integer",
                                        "example": 0
                                    }
                                }
                            }
                        }
                    }
                }
            }
        }
    }
}
```
