# YouTube Subtitle Downloader — Bulk SRT & VTT Export

**Use case:** 

Bulk-download YouTube subtitles and captions as SRT, VTT, or text. Export auto-generated and manual captions from many videos at once for any workflow.

## Input

```json
{
  "urls": [
    {
      "url": "https://www.youtube.com/watch?v=pKgup8tsPv8"
    }
  ],
  "outputFormat": "json",
  "language": "en",
  "includeAutoGenerated": true,
  "includeMetadata": true,
  "maxItems": 100,
  "proxyConfiguration": {
    "useApifyProxy": true
  }
}
```

## Output

```json
{
  "videoId": {
    "label": "Video ID",
    "format": "text"
  },
  "title": {
    "label": "Title",
    "format": "text"
  },
  "channel": {
    "label": "Channel",
    "format": "text"
  },
  "language": {
    "label": "Language",
    "format": "text"
  },
  "segmentCount": {
    "label": "Segments",
    "format": "number"
  },
  "transcriptText": {
    "label": "Text Preview",
    "format": "text"
  }
}
```

## About this Actor

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