# Restaurant Chain Review Comparison Across Locations

**Use case:** 

2GIS reputation monitoring across several restaurant or bar locations at once is what this configuration is built for. Point it at two or more 2GIS firm IDs and get one combined dataset of recent, written reviews to filter by place. Rating-only entries are skipped, sorted newest first, so an agency or multi-location owner can spot a branch drifting from the brand's usual standard.

## Input

```json
{
  "firmIds": [
    "70000001007179642",
    "70000001034739765",
    "4504127912651411"
  ],
  "urls": [],
  "sortBy": "date_created",
  "withTextOnly": true,
  "maxItemsPerFirm": 10,
  "includeRawData": false,
  "proxyConfiguration": {
    "useApifyProxy": true
  }
}
```

## Output

```json
{
  "authorName": {
    "label": "Reviewer",
    "format": "string"
  },
  "rating": {
    "label": "Rating",
    "format": "number"
  },
  "dateCreated": {
    "label": "Date",
    "format": "string"
  },
  "text": {
    "label": "Review",
    "format": "string"
  },
  "likesCount": {
    "label": "Likes",
    "format": "number"
  },
  "hasReply": {
    "label": "Replied",
    "format": "boolean"
  },
  "firmId": {
    "label": "Place",
    "format": "string"
  }
}
```

## About this Actor

This example demonstrates how to use [2GIS Reviews Scraper: Отзывы 2ГИС](https://apify.com/getascraper/2gis-reviews-scraper.md) with a specific input configuration. Visit the [Actor detail page](https://apify.com/getascraper/2gis-reviews-scraper.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/getascraper/2gis-reviews-scraper.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`).
