# 2GIS Place Review Export From a Pasted URL

**Use case:** 

A 2GIS place reviews export straight from a pasted link is what this handles, for anyone who found a business by browsing the map rather than hunting down its numeric firm ID. Paste the full place page URL and get every written review's text back in one clean dataset, rating-only entries filtered out, ready for a spreadsheet or a sentiment analysis pipeline.

## Input

```json
{
  "firmIds": [
    "4504127912651411"
  ],
  "urls": [
    "https://2gis.ru/moscow/firm/70000001007179642"
  ],
  "sortBy": "date_edited",
  "withTextOnly": true,
  "maxItemsPerFirm": 25,
  "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`).
