# Get the Plain Text of a YouTube Video

**Use case:** 

Paste a YouTube URL and get just the spoken text, with no timestamps - ready to paste into a document. $0.005 per video.

## Input

```json
{
  "youtubeUrls": [
    "https://www.youtube.com/watch?v=jNQXAC9IVRw"
  ],
  "languages": [
    "en"
  ],
  "includeTimestamps": false,
  "includeSrt": false
}
```

## Output

```json
{
  "type": {
    "label": "Type"
  },
  "url": {
    "label": "URL",
    "format": "link"
  },
  "videoId": {
    "label": "Video ID",
    "format": "text"
  },
  "title": {
    "label": "Title",
    "format": "text"
  },
  "channel": {
    "label": "Channel",
    "format": "text"
  },
  "durationSeconds": {
    "label": "Duration (s)",
    "format": "number"
  },
  "language": {
    "label": "Language",
    "format": "text"
  },
  "autoGenerated": {
    "label": "Auto-generated",
    "format": "boolean"
  },
  "transcript": {
    "label": "Transcript",
    "format": "text"
  },
  "srt": {
    "label": "SRT",
    "format": "text"
  },
  "error": {
    "label": "Error",
    "format": "text"
  }
}
```

## About this Actor

This example demonstrates how to use [YouTube Transcripts - Captions, SRT, Timestamps](https://apify.com/kaz_kakyo/youtube-transcripts) with a specific input configuration. Visit the [Actor detail page](https://apify.com/kaz_kakyo/youtube-transcripts) to learn more, explore other use cases, and run it yourself.