# Monitor new Google Maps reviews daily

**Use case:** 

Check a place for reviews posted in the last two days and export each one with its rating, full text, owner reply and reviewer details.

## Input

```json
{
  "startUrls": [],
  "placeIds": [
    "ChIJHQQciMZRqEcR2X4b8-vf5Bk"
  ],
  "maxReviewsPerPlace": 0,
  "reviewsSort": "newest",
  "newerThan": "2 days",
  "reviewsKeyword": "",
  "reviewsOrigin": "all",
  "language": "en",
  "countryCode": "us",
  "parentActor": ""
}
```

## Output

```json
{
  "reviewId": {
    "label": "Review ID",
    "format": "text"
  },
  "rating": {
    "label": "Rating",
    "format": "number"
  },
  "ratingScale": {
    "label": "Rating is out of",
    "format": "number"
  },
  "text": {
    "label": "Review text",
    "format": "text"
  },
  "textTranslated": {
    "label": "Review text (translated)",
    "format": "text"
  },
  "date": {
    "label": "Posted",
    "format": "text"
  },
  "publishedAtMicros": {
    "label": "Published at (epoch µs)",
    "format": "number"
  },
  "editedAtMicros": {
    "label": "Edited at (epoch µs)",
    "format": "number"
  },
  "isEdited": {
    "label": "Edited",
    "format": "boolean"
  },
  "language": {
    "label": "Review language",
    "format": "text"
  },
  "translatedLanguage": {
    "label": "Translated into",
    "format": "text"
  },
  "likes": {
    "label": "Likes",
    "format": "number"
  },
  "source": {
    "label": "Source",
    "format": "text"
  },
  "sourceIcon": {
    "label": "Source logo",
    "format": "image"
  },
  "ownerResponse": {
    "label": "Owner response",
    "format": "object"
  },
  "attributes": {
    "label": "Review attributes",
    "format": "array"
  },
  "photos": {
    "label": "Review photos",
    "format": "array"
  },
  "media": {
    "label": "Photos & videos (detailed)",
    "format": "array"
  },
  "author": {
    "label": "Author",
    "format": "text"
  },
  "authorId": {
    "label": "Author ID",
    "format": "text"
  },
  "authorProfile": {
    "label": "Author profile URL",
    "format": "link"
  },
  "authorPhoto": {
    "label": "Author photo URL",
    "format": "image"
  },
  "authorReviewCount": {
    "label": "Author's reviews",
    "format": "number"
  },
  "authorPhotoCount": {
    "label": "Author's photos",
    "format": "number"
  },
  "isLocalGuide": {
    "label": "Local Guide",
    "format": "boolean"
  },
  "localGuideLevel": {
    "label": "Local Guide level",
    "format": "number"
  },
  "reviewUrl": {
    "label": "Review URL",
    "format": "link"
  },
  "placeName": {
    "label": "Place",
    "format": "text"
  },
  "placeRating": {
    "label": "Place rating",
    "format": "number"
  },
  "reviewsCount": {
    "label": "Place reviews count",
    "format": "number"
  },
  "primaryCategory": {
    "label": "Place category",
    "format": "object"
  },
  "categories": {
    "label": "Place categories",
    "format": "array"
  },
  "address": {
    "label": "Address",
    "format": "text"
  },
  "addressFormatted": {
    "label": "Address (formatted)",
    "format": "text"
  },
  "countryCode": {
    "label": "Country code",
    "format": "text"
  },
  "latitude": {
    "label": "Latitude",
    "format": "number"
  },
  "longitude": {
    "label": "Longitude",
    "format": "number"
  },
  "placeId": {
    "label": "Place ID",
    "format": "text"
  },
  "hexId": {
    "label": "Feature ID",
    "format": "text"
  },
  "googleMapsUrl": {
    "label": "Google Maps URL",
    "format": "link"
  },
  "recordType": {
    "label": "Record type",
    "format": "text"
  }
}
```

## About this Actor

This example demonstrates how to use [Google Maps Reviews Scraper - Unlimited Reviews Per Place](https://apify.com/zen-studio/google-maps-reviews-scraper.md) with a specific input configuration. Visit the [Actor detail page](https://apify.com/zen-studio/google-maps-reviews-scraper.md) to learn more, explore other use cases, and run it yourself.


## 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.
This Task's input is already configured above — use it as-is rather than inventing a new one.

- **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 full API examples (JavaScript, Python, CLI, MCP, OpenAPI), see this Task's Actor page: https://apify.com/zen-studio/google-maps-reviews-scraper.md

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).
