# 识别异地Google Maps评论者：常驻地区+置信度反刷评

**Use case:** 

依据公开评论历史推断Google Maps评论者的常驻地区与活动范围，标记评论扎堆在远离目标商家区域的可疑账号。输出常驻地区、异地离群评论数、置信分与本地/外地足迹，用于评论者审核、信誉研究与反刷评，仅做区域聚合，不定位个人。

## Input

```json
{
  "contributorId": "107022004965696773221",
  "regionGranularity": "city",
  "minCityPopulation": 100000,
  "hl": "zh",
  "maxResultsPerContributor": 100
}
```

## Output

```json
{
  "result_type": {
    "label": "Result Type",
    "format": "string"
  },
  "contributor_id": {
    "label": "Contributor ID",
    "format": "string"
  },
  "contributor_name": {
    "label": "Contributor Name",
    "format": "string"
  },
  "home_region_guess": {
    "label": "Home Region Guess",
    "format": "string"
  },
  "confidence": {
    "label": "Confidence",
    "format": "number"
  },
  "home_cluster_size": {
    "label": "Home Cluster Size",
    "format": "integer"
  },
  "travel_outliers": {
    "label": "Travel Outliers",
    "format": "integer"
  },
  "located_reviews": {
    "label": "Located Reviews",
    "format": "integer"
  }
}
```

## About this Actor

This example demonstrates how to use [Google Maps Reviewer Geo Profile API](https://apify.com/johnvc/google-maps-reviewer-geo-profile-api) with a specific input configuration. Visit the [Actor detail page](https://apify.com/johnvc/google-maps-reviewer-geo-profile-api) to learn more, explore other use cases, and run it yourself.