# Get Question Keywords From Google Autocomplete

**Use case:** 

Turn a topic into the questions people search on Google as JSON. Each autocomplete suggestion comes with its source query and rank. Pay per suggestion.

## Input

```json
{
  "queries": [
    "why is seo",
    "how to do seo",
    "what is seo"
  ],
  "gl": "us",
  "hl": "en"
}
```

## 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.