# Get YouTube transcripts in Korean

**Use case:** 

Renders any video's captions into Korean via the translate_to input. Returns non_timestamped, timestamped, and translated_to fields.

## Input

```json
{
  "youtube_url": "https://www.youtube.com/watch?v=iG9CE55wbtY",
  "languages": [
    "en"
  ],
  "translate_to": "ko",
  "transcript_type": "any",
  "output_formats": [],
  "preserve_formatting": false,
  "list_only": false,
  "include_metadata": true
}
```

## Output

```json
{
  "thumbnail_url": {
    "label": "Thumbnail",
    "format": "image"
  },
  "title": {
    "label": "Title"
  },
  "channel_name": {
    "label": "Channel"
  },
  "view_count": {
    "label": "Views",
    "format": "number"
  },
  "language": {
    "label": "Language"
  },
  "source_type": {
    "label": "Source"
  },
  "duration_human": {
    "label": "Duration"
  },
  "snippet_count": {
    "label": "Snippets",
    "format": "number"
  },
  "translated_to": {
    "label": "Translated to"
  },
  "url": {
    "label": "YouTube URL",
    "format": "link"
  },
  "success": {
    "label": "OK",
    "format": "boolean"
  }
}
```

## About this Actor

This example demonstrates how to use [YouTube Transcript & Subtitles Scraper API](https://apify.com/johnvc/youtubetranscripts) with a specific input configuration. Visit the [Actor detail page](https://apify.com/johnvc/youtubetranscripts) to learn more, explore other use cases, and run it yourself.