# 批量分析谷歌地图评论者常住地区与出行足迹｜信誉与虚假评论调查API

**Use case:** 

一次运行批量分析大量谷歌地图评论者，面向区域级信誉调查与虚假评论识别。每位评论者输出一行：推断的常住地区（城市/省/国家）、置信度评分，以及本地与外地出行足迹分布，帮助批量筛查可疑评论账号。仅做区域级汇总，不定位个人。

## Input

```json
{
  "contributorId": "107022004965696773221",
  "contributorIds": [
    "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.