# Негативные отзывы о компании в 2ГИС

**Use case:** 

Соберите отзывы с оценкой 1–2 звезды из 2ГИС. Получите жалобы, тексты, авторов, даты, фото и ответы бизнеса для мониторинга репутации.

## Input

```json
{
  "startUrls": [
    "https://2gis.ru/moscow/firm/70000001057394703"
  ],
  "maxPlaces": 1,
  "language": "ru",
  "maxReviews": 500,
  "reviewsRating": "negative",
  "reviewsWithAnswer": false,
  "reviewsTopic": "",
  "reviewsFilterKeyword": "",
  "reviewsSource": "all",
  "proxyConfiguration": {
    "useApifyProxy": true,
    "apifyProxyGroups": [
      "RESIDENTIAL"
    ]
  }
}
```

## Output

```json
{
  "placeId": {
    "label": "Place ID",
    "format": "text"
  },
  "placeName": {
    "label": "Place",
    "format": "text"
  },
  "placeUrl": {
    "label": "Place URL",
    "format": "link"
  },
  "placeAddress": {
    "label": "Address",
    "format": "text"
  },
  "placeCity": {
    "label": "City",
    "format": "text"
  },
  "placeRating": {
    "label": "Place Rating",
    "format": "number"
  },
  "placeReviewCount": {
    "label": "Place Reviews",
    "format": "number"
  },
  "placeCategories": {
    "label": "Categories",
    "format": "array"
  },
  "reviewTopics": {
    "label": "Topics",
    "format": "array"
  },
  "reviewId": {
    "label": "Review ID",
    "format": "text"
  },
  "rating": {
    "label": "Rating",
    "format": "number"
  },
  "text": {
    "label": "Review Text",
    "format": "text"
  },
  "dateCreated": {
    "label": "Date Created",
    "format": "date"
  },
  "dateEdited": {
    "label": "Date Edited",
    "format": "date"
  },
  "authorName": {
    "label": "Author",
    "format": "text"
  },
  "authorId": {
    "label": "Author ID",
    "format": "text"
  },
  "authorPhotoUrl": {
    "label": "Author Photo",
    "format": "link"
  },
  "authorReviewsCount": {
    "label": "Author Reviews",
    "format": "number"
  },
  "likesCount": {
    "label": "Likes",
    "format": "number"
  },
  "commentsCount": {
    "label": "Comments",
    "format": "number"
  },
  "reactions": {
    "label": "Reactions",
    "format": "object"
  },
  "provider": {
    "label": "Source",
    "format": "text"
  },
  "officialAnswer": {
    "label": "Business Reply",
    "format": "object"
  },
  "photos": {
    "label": "Photos",
    "format": "array"
  },
  "isHidden": {
    "label": "Hidden",
    "format": "boolean"
  },
  "isRated": {
    "label": "Has Rating",
    "format": "boolean"
  },
  "hidingReason": {
    "label": "Hiding Reason",
    "format": "text"
  },
  "hidingType": {
    "label": "Hiding Type",
    "format": "text"
  },
  "reviewUrl": {
    "label": "Review URL",
    "format": "link"
  },
  "source": {
    "label": "Source Channel",
    "format": "text"
  },
  "regionId": {
    "label": "Region ID",
    "format": "text"
  },
  "objectId": {
    "label": "Object ID",
    "format": "text"
  },
  "objectType": {
    "label": "Object Type",
    "format": "text"
  },
  "providerData": {
    "label": "Source Branding",
    "format": "object"
  },
  "trustFactors": {
    "label": "Trust Factors",
    "format": "object"
  },
  "pinStatus": {
    "label": "Pin Status",
    "format": "text"
  },
  "hasUnresolvedComplaints": {
    "label": "Has Unresolved Complaints",
    "format": "boolean"
  },
  "isUnratedPermanently": {
    "label": "Unrated Permanently",
    "format": "boolean"
  },
  "filteredFacts": {
    "label": "Filtered Facts",
    "format": "array"
  },
  "statusHistory": {
    "label": "Status History",
    "format": "array"
  },
  "externalId": {
    "label": "External ID",
    "format": "text"
  },
  "authorUserId": {
    "label": "Author User ID",
    "format": "text"
  },
  "authorFirstName": {
    "label": "Author First Name",
    "format": "text"
  },
  "authorLastName": {
    "label": "Author Last Name",
    "format": "text"
  },
  "authorProvider": {
    "label": "Author Provider",
    "format": "text"
  },
  "authorUrl": {
    "label": "Author URL",
    "format": "link"
  },
  "authorPhotoUrls": {
    "label": "Author Photo Sizes",
    "format": "object"
  },
  "searchQuery": {
    "label": "Search Query",
    "format": "text"
  },
  "scrapedAt": {
    "label": "Scraped At",
    "format": "date"
  }
}
```

## About this Actor

This example demonstrates how to use [Парсер отзывов 2ГИС | 2GIS Reviews Scraper (2026)](https://apify.com/zen-studio/2gis-reviews-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/zen-studio/2gis-reviews-scraper) 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/2gis-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).
