# Batch Extract Caption Availability Report

**Use case:** 

Extract public YouTube captions, transcript text, timestamps, and video metadata for AI summaries, RAG, SEO briefs, or research exports. Use it for batch...

## Input

```json
{
  "videoUrls": [
    {
      "url": "https://www.youtube.com/watch?v=dQw4w9WgXcQ"
    },
    {
      "url": "https://www.youtube.com/watch?v=aircAruvnKk"
    }
  ],
  "videoIds": [
    "dQw4w9WgXcQ"
  ],
  "language": "en",
  "includeTimestamps": false,
  "includeMetadata": true,
  "maxVideos": 2,
  "proxyConfiguration": {
    "useApifyProxy": true,
    "apifyProxyGroups": [
      "RESIDENTIAL"
    ]
  }
}
```

## Output

```json
{
  "videoId": {
    "label": "Video ID",
    "format": "string"
  },
  "videoUrl": {
    "label": "Video URL",
    "format": "string"
  },
  "title": {
    "label": "Title",
    "format": "string"
  },
  "channelName": {
    "label": "Channel",
    "format": "string"
  },
  "language": {
    "label": "Language",
    "format": "string"
  },
  "isAutoGenerated": {
    "label": "Auto-generated",
    "format": "boolean"
  },
  "transcriptText": {
    "label": "Transcript",
    "format": "string"
  },
  "segments": {
    "label": "Segments",
    "format": "array"
  },
  "duration": {
    "label": "Duration (seconds)",
    "format": "number"
  },
  "thumbnailUrl": {
    "label": "Thumbnail",
    "format": "string"
  },
  "captionsAvailable": {
    "label": "Captions available",
    "format": "boolean"
  },
  "error": {
    "label": "Error",
    "format": "string"
  }
}
```

## About this Actor

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