# Monitor Restaurant Google Reviews Automatically

**Use case:** 

Track new and changed Google reviews for restaurants, flag negative feedback, and find unanswered complaints across one or more locations automatically.

## Input

```json
{
  "places": [
    {
      "url": "https://www.google.com/maps/place/CAP+Adri%C3%A0/@41.4012631,2.1346031,17.04z/data=!4m6!3m5!1s0x12a498733f3bad0f:0x74f840587e000d1e!8m2!3d41.4004181!4d2.1388436!16s%2Fg%2F11b61q6qbt",
      "label": "Example restaurant"
    }
  ],
  "monitorId": "restaurant-google-reviews-example",
  "firstRunPolicy": "emitRecent",
  "lookbackDays": 30,
  "maxReviewsPerPlace": 100,
  "alertAtOrBelowStars": 3,
  "includeAnsweredReviews": false,
  "onlyNew": true,
  "alertKeywords": [
    "food poisoning",
    "allergy",
    "unsafe"
  ],
  "aiMode": "off",
  "replyTone": "professional",
  "replyLanguage": "auto",
  "brandRules": [],
  "maxAiReviews": 0,
  "aiBudgetUsd": 0,
  "generateLocationDigest": true,
  "resetState": false,
  "proxyConfiguration": {
    "useApifyProxy": false
  }
}
```

## Output

```json
{
  "recordType": {
    "label": "Record type",
    "format": "string"
  },
  "placeLabel": {
    "label": "Location",
    "format": "string"
  },
  "stars": {
    "label": "Stars",
    "format": "number"
  },
  "text": {
    "label": "Original review",
    "format": "string"
  },
  "language": {
    "label": "Language",
    "format": "string"
  },
  "isNew": {
    "label": "New",
    "format": "boolean"
  },
  "isUpdated": {
    "label": "Updated",
    "format": "boolean"
  },
  "isUnanswered": {
    "label": "Unanswered",
    "format": "boolean"
  },
  "alert": {
    "label": "Alert",
    "format": "boolean"
  },
  "alertReasons": {
    "label": "Alert reasons",
    "format": "array"
  },
  "urgency": {
    "label": "Urgency",
    "format": "string"
  },
  "topics": {
    "label": "Topics",
    "format": "array"
  },
  "issueSummary": {
    "label": "Issue summary",
    "format": "string"
  },
  "suggestedAction": {
    "label": "Suggested action",
    "format": "string"
  },
  "replyDraft": {
    "label": "Reply draft",
    "format": "string"
  },
  "publishedAt": {
    "label": "Published at",
    "format": "string"
  },
  "reviewUrl": {
    "label": "Review URL",
    "format": "string"
  },
  "idempotencyKey": {
    "label": "Idempotency key",
    "format": "string"
  }
}
```

## About this Actor

This example demonstrates how to use [Google Reviews Monitor & AI Reply Drafts](https://apify.com/i-scraper/google-reviews-monitor) with a specific input configuration. Visit the [Actor detail page](https://apify.com/i-scraper/google-reviews-monitor) 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/i-scraper/google-reviews-monitor.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).
