# Monitor Negative 2GIS Reviews for Multiple Branches

**Use case:** 

Ready-to-run 2GIS review monitoring for multiple branches. Keep a quiet baseline and get only new negative reviews, unanswered feedback, owner replies, rating changes, and review-count changes.

## Input

```json
{
  "places": [
    "https://2gis.ru/moscow/firm/70000001044357973/tab/reviews",
    "https://2gis.kz/almaty/firm/70000001076772761/tab/reviews"
  ],
  "placeNames": [
    "Moscow example branch",
    "Almaty example branch"
  ],
  "stateKey": "example-negative-monitor",
  "quietBaseline": true,
  "recentReviewsPerPlace": 30,
  "negativeMaxRating": 3,
  "unansweredAfterHours": 24,
  "emitAllNewReviews": false,
  "emitAggregateChanges": true,
  "webhookUrl": "",
  "resetState": false
}
```

## Output

```json
{
  "eventType": {
    "label": "Event type",
    "format": "string"
  },
  "placeName": {
    "label": "Branch",
    "format": "string"
  },
  "rating": {
    "label": "Review rating",
    "format": "number"
  },
  "text": {
    "label": "Review text",
    "format": "string"
  },
  "hasOwnerReply": {
    "label": "Owner replied",
    "format": "boolean"
  },
  "ownerReplyText": {
    "label": "Owner reply",
    "format": "string"
  },
  "previousRating": {
    "label": "Previous rating",
    "format": "number"
  },
  "currentRating": {
    "label": "Current rating",
    "format": "number"
  },
  "previousCount": {
    "label": "Previous review count",
    "format": "integer"
  },
  "currentCount": {
    "label": "Current review count",
    "format": "integer"
  },
  "ageHours": {
    "label": "Hours unanswered",
    "format": "number"
  },
  "observedAt": {
    "label": "Observed at",
    "format": "string"
  },
  "placeUrl": {
    "label": "2GIS URL",
    "format": "string"
  }
}
```

## About this Actor

This example demonstrates how to use [2GIS Reviews Monitor & Alerts](https://apify.com/anoha_56/2gis-reviews-monitor-alerts.md) with a specific input configuration. Visit the [Actor detail page](https://apify.com/anoha_56/2gis-reviews-monitor-alerts.md) to learn more, explore other use cases, and run it yourself.


## How to integrate an Actor?

This Task's input is already configured above. Use it as-is rather than inventing a new one.

Do not guess an integration path. Every one of them is in the agent quickstart at https://apify.com/agents.md: the Apify MCP server, Agent Skills with the Apify CLI, the JavaScript and Python clients, the REST API, and the account-free path for an agent with no human to sign in. It also carries the rule on stating cost before the first paid run.

For full API examples (JavaScript, Python, CLI, MCP, OpenAPI), see this Task's Actor page: https://apify.com/anoha_56/2gis-reviews-monitor-alerts.md

Each client library has reference documentation the quickstart does not restate: [JavaScript/TypeScript](https://docs.apify.com/api/client/js/docs.md) (`npm install apify-client`) and [Python](https://docs.apify.com/api/client/python/docs.md) (`pip install apify-client`).
