# Download a batch of YouTube transcripts in bulk

**Use case:** 

Download transcripts for a whole list of YouTube videos in one run. Returns timestamped and plain text captions with language data, priced per video.

## Input

```json
{
  "youtube_url": [
    "https://www.youtube.com/watch?v=dQw4w9WgXcQ",
    "https://www.youtube.com/watch?v=jNQXAC9IVRw",
    "https://www.youtube.com/watch?v=iG9CE55wbtY",
    "https://www.youtube.com/watch?v=kJQP7kiw5Fk",
    "https://www.youtube.com/watch?v=JGwWNGJdvx8"
  ]
}
```

## Output

```json
{
  "url": {
    "label": "YouTube URL",
    "format": "link"
  },
  "video_id": {
    "label": "Video ID"
  },
  "language": {
    "label": "Language"
  },
  "language_code": {
    "label": "Lang"
  },
  "is_generated": {
    "label": "Auto-Gen"
  },
  "total_seconds": {
    "label": "Duration (s)"
  },
  "non_timestamped": {
    "label": "Transcript"
  },
  "success": {
    "label": "OK"
  }
}
```

## 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.