# Bulk Export Transcripts for Many YouTube Videos

**Use case:** 

Extract transcripts for a whole list of YouTube videos in one run — one row per video with full text and timestamps.

## Input

```json
{
  "videos": [
    "dQw4w9WgXcQ",
    "https://youtu.be/9bZkp7q19f0"
  ],
  "lang": "en"
}
```

## Output

```json
{
  "videoId": {
    "label": "Video ID",
    "format": "text"
  },
  "url": {
    "label": "Video URL",
    "format": "link"
  },
  "text": {
    "label": "Transcript",
    "format": "text"
  },
  "language": {
    "label": "Lang",
    "format": "text"
  },
  "segmentCount": {
    "label": "Segments",
    "format": "number"
  },
  "durationSeconds": {
    "label": "Duration (s)",
    "format": "number"
  }
}
```

## About this Actor

This example demonstrates how to use [YouTube Transcript Scraper – Video Captions & Subtitles by URL](https://apify.com/endspec/youtube-instant-transcript-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/endspec/youtube-instant-transcript-scraper) to learn more, explore other use cases, and run it yourself.