# Get Google Search Suggestions for Any Keyword

**Use case:** 

Get the suggestions Google shows as you type, for any keyword, as JSON: each suggestion with its source query and rank. Pay per suggestion.

## Input

```json
{
  "queries": [
    "coffee near",
    "best laptop for"
  ],
  "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.