# YouTube Keyword Research Workflow

**Use case:** 

Run a YouTube keyword research workflow with custom modifiers, locale settings, per-request suggestion limits, and polite delays for content planning.

## Input

```json
{
  "seedKeywords": [
    "ai tools",
    "video editing",
    "home workout"
  ],
  "language": "en",
  "market": "US",
  "expansionMode": "custom",
  "customModifiers": [
    "tutorial",
    "review",
    "for beginners",
    "2026"
  ],
  "maxSuggestionsPerSeed": 10,
  "maxExpansionsPerSeed": 4,
  "requestDelayMs": 200
}
```

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