# Google autocomplete scraper for UK keyword research

**Use case:** 

Extract Google autocomplete suggestions for UK-localized seed keywords with country and language settings for market research.

## Input

```json
{
  "keywords": [
    "best crm software",
    "accounting software"
  ],
  "language": "en",
  "country": "gb",
  "maxDepth": 1,
  "maxSuggestionsPerKeyword": 10,
  "appendAlphabet": false,
  "maxRequestRetries": 3
}
```

## Output

```json
{
  "keyword": {
    "label": "Seed Keyword"
  },
  "suggestion": {
    "label": "Suggestion"
  },
  "depth": {
    "label": "Depth",
    "format": "number"
  },
  "parentKeyword": {
    "label": "Parent Keyword"
  },
  "language": {
    "label": "Language"
  },
  "country": {
    "label": "Country"
  },
  "scrapedAt": {
    "label": "Scraped At"
  }
}
```

## About this Actor

This example demonstrates how to use [Google Autocomplete Scraper](https://apify.com/automation-lab/google-autocomplete-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/automation-lab/google-autocomplete-scraper) to learn more, explore other use cases, and run it yourself.