# YouTube transcript keyword research task

**Use case:** 

Search YouTube transcripts for target keywords, filter by time range, chunk paragraphs, and include text analytics for research.

## Input

```json
{
  "urls": [
    "https://www.youtube.com/watch?v=jNQXAC9IVRw"
  ],
  "language": "en",
  "includeAutoGenerated": true,
  "outputFormat": "json",
  "chunkParagraphs": true,
  "searchKeywords": "internet, elephant",
  "timeRangeStart": 0,
  "timeRangeEnd": 120,
  "includeTextAnalysis": true
}
```

## Output

```json
{
  "videoId": {
    "label": "Video ID",
    "format": "text"
  },
  "videoTitle": {
    "label": "Title",
    "format": "text"
  },
  "channelName": {
    "label": "Channel",
    "format": "text"
  },
  "language": {
    "label": "Language",
    "format": "text"
  },
  "segmentCount": {
    "label": "Segments",
    "format": "number"
  },
  "wordCount": {
    "label": "Words",
    "format": "number"
  },
  "readingTimeMinutes": {
    "label": "Read Time (min)",
    "format": "number"
  },
  "durationSeconds": {
    "label": "Duration (s)",
    "format": "number"
  },
  "viewCount": {
    "label": "Views",
    "format": "number"
  }
}
```

## About this Actor

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