# Identify SEO Keywords from YouTube Video Transcripts

**Use case:** 

Extract full transcripts from relevant YouTube videos to uncover high-frequency keywords and phrases. This data can be used for content optimization, discoverin

## Input

```json
{
  "videoUrls": [
    "https://www.youtube.com/watch?v=P2d2a4b0870",
    "https://www.youtube.com/watch?v=aGg5X99p48Y",
    "https://www.youtube.com/watch?v=fJtYh1U-hK8"
  ],
  "maxComments": 0,
  "includeChapters": true,
  "includeEndscreen": true,
  "includeCards": false,
  "includeTranscriptMetadata": true,
  "includeRelatedVideos": 0,
  "proxyCountry": "US"
}
```

## Output

```json
{
  "videoId": {
    "label": "Video ID",
    "format": "text"
  },
  "title": {
    "label": "Title",
    "format": "text"
  },
  "channelName": {
    "label": "Channel",
    "format": "text"
  },
  "viewCount": {
    "label": "Views",
    "format": "number"
  },
  "likeCount": {
    "label": "Likes",
    "format": "number"
  },
  "commentCount": {
    "label": "Comments",
    "format": "number"
  },
  "durationSeconds": {
    "label": "Duration (s)",
    "format": "number"
  },
  "publishedDate": {
    "label": "Published",
    "format": "text"
  },
  "category": {
    "label": "Category",
    "format": "text"
  },
  "playabilityStatus": {
    "label": "Playability",
    "format": "text"
  },
  "isPlayable": {
    "label": "Playable",
    "format": "boolean"
  },
  "isAgeGated": {
    "label": "Age Gated",
    "format": "boolean"
  },
  "commentsDisabled": {
    "label": "Comments Disabled",
    "format": "boolean"
  },
  "success": {
    "label": "Success",
    "format": "boolean"
  }
}
```

## About this Actor

This example demonstrates how to use [Youtube Video Details Scraper](https://apify.com/crawlerbros/youtube-video-details-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/crawlerbros/youtube-video-details-scraper) to learn more, explore other use cases, and run it yourself.