# Scrape YouTube video transcripts in bulk

**Use case:** 

Extract transcripts and captions from public YouTube videos with timed segments and language info. No API key or login required.

## Input

```json
{
  "videos": [
    "https://www.youtube.com/watch?v=aRSBZN2UF0Q"
  ],
  "preferredLanguages": [
    "en"
  ],
  "includeTimestamps": true,
  "combineToPlainText": false,
  "concurrency": 5,
  "proxyConfiguration": {
    "useApifyProxy": false
  }
}
```

## Output

```json
{
  "videoId": {
    "label": "Video ID",
    "format": "text"
  },
  "title": {
    "label": "Title",
    "format": "text"
  },
  "language": {
    "label": "Language",
    "format": "text"
  },
  "isAutoGenerated": {
    "label": "Auto-generated",
    "format": "boolean"
  },
  "segmentCount": {
    "label": "Segments",
    "format": "number"
  },
  "videoUrl": {
    "label": "Video",
    "format": "link"
  }
}
```

## About this Actor

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