# YouTube Locale Autocomplete Keywords

**Use case:** 

Scrape YouTube autocomplete suggestions for a specific language and market such as German keywords in Germany or Spanish keywords in Spain.

## Input

```json
{
  "seedKeywords": [
    "wandern",
    "fahrrad test"
  ],
  "language": "de",
  "market": "DE",
  "expansionMode": "alphabet",
  "customModifiers": [
    "tutorial",
    "review",
    "2026"
  ],
  "maxSuggestionsPerSeed": 10,
  "maxExpansionsPerSeed": 8,
  "requestDelayMs": 150
}
```

## Output

```json
{
  "seed": {
    "label": "Seed",
    "format": "text"
  },
  "suggestion": {
    "label": "Suggestion",
    "format": "text"
  },
  "rank": {
    "label": "Rank",
    "format": "number"
  },
  "query": {
    "label": "Fetched query",
    "format": "text"
  },
  "expansion": {
    "label": "Expansion",
    "format": "text"
  },
  "modifier": {
    "label": "Modifier",
    "format": "text"
  },
  "language": {
    "label": "Language",
    "format": "text"
  },
  "market": {
    "label": "Market",
    "format": "text"
  },
  "sourceUrl": {
    "label": "Source URL",
    "format": "link"
  },
  "fetchedAt": {
    "label": "Fetched at",
    "format": "date"
  }
}
```

## About this Actor

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