# 挖掘中文长尾关键词(谷歌联想词)

**Use case:** 

用谷歌联想词批量扩展中文长尾关键词: 每个种子词返回约十条真实搜索词, 含排序。适合跨境电商与出海内容团队做关键词研究。

## Input

```json
{
  "queries": [
    "跨境电商 怎么",
    "留学 申请"
  ],
  "gl": "us",
  "hl": "zh-cn"
}
```

## Output

```json
{
  "result_type": {
    "label": "Result Type",
    "format": "string"
  },
  "query": {
    "label": "Query",
    "format": "string"
  },
  "position": {
    "label": "Position",
    "format": "integer"
  },
  "value": {
    "label": "Suggestion",
    "format": "string"
  }
}
```

## About this Actor

This example demonstrates how to use [Google Autocomplete API | Search & Place Suggestions for Agents](https://apify.com/johnvc/google-autocomplete-api) with a specific input configuration. Visit the [Actor detail page](https://apify.com/johnvc/google-autocomplete-api) to learn more, explore other use cases, and run it yourself.