# YouTube Influencer Discovery Workflow

**Use case:** 

Run a YouTube influencer discovery workflow with multiple seed creators, topical keywords, recent-video sampling, regional hints, and public contact enrichment.

## Input

```json
{
  "seedChannels": [
    "https://www.youtube.com/@mkbhd",
    "https://www.youtube.com/@linustechtips"
  ],
  "keywords": [
    "smartphone reviews",
    "laptop reviews",
    "consumer tech news"
  ],
  "maxResults": 100,
  "maxVideosPerSeed": 10,
  "includeEmails": true,
  "languageCode": "en",
  "regionCode": "US"
}
```

## Output

```json
{
  "seedChannel": {
    "label": "Seed channel",
    "format": "link"
  },
  "seedTitle": {
    "label": "Seed title",
    "format": "text"
  },
  "matchedChannelUrl": {
    "label": "Matched channel",
    "format": "link"
  },
  "matchedHandle": {
    "label": "Handle",
    "format": "text"
  },
  "matchedTitle": {
    "label": "Title",
    "format": "text"
  },
  "description": {
    "label": "Description",
    "format": "text"
  },
  "subscriberCountText": {
    "label": "Subscribers",
    "format": "text"
  },
  "subscriberCount": {
    "label": "Subscriber count",
    "format": "number"
  },
  "videoCountText": {
    "label": "Videos",
    "format": "text"
  },
  "similarityScore": {
    "label": "Similarity",
    "format": "number"
  },
  "similarityReasons": {
    "label": "Reasons",
    "format": "text"
  },
  "discoveryQuery": {
    "label": "Discovery query",
    "format": "text"
  },
  "overlapTerms": {
    "label": "Overlap terms",
    "format": "text"
  },
  "publicEmails": {
    "label": "Public emails",
    "format": "text"
  },
  "scrapedAt": {
    "label": "Scraped at",
    "format": "date"
  }
}
```

## About this Actor

This example demonstrates how to use [YouTube Channel Lookalike Finder](https://apify.com/automation-lab/youtube-channel-lookalike-finder) with a specific input configuration. Visit the [Actor detail page](https://apify.com/automation-lab/youtube-channel-lookalike-finder) to learn more, explore other use cases, and run it yourself.