# Transcribe a whole YouTube channel

**Use case:** 

Ready-to-run example: give the Actor a channel handle and it walks the uploads, returning one plain-text transcript row per video.

## Input

```json
{
  "urls": [
    "https://www.youtube.com/@TED"
  ],
  "allLanguages": false,
  "includeShorts": false,
  "maxVideosPerSource": 10,
  "includeChapters": true,
  "formats": [
    "text"
  ],
  "onlyNewVideos": false,
  "stateLabel": "channel-archive",
  "proxyConfiguration": {
    "useApifyProxy": true,
    "apifyProxyGroups": [
      "RESIDENTIAL"
    ]
  }
}
```

## Output

```json
{
  "videoId": {
    "label": "Video ID",
    "format": "string"
  },
  "url": {
    "label": "URL",
    "format": "string"
  },
  "title": {
    "label": "Title",
    "format": "string"
  },
  "channel": {
    "label": "Channel",
    "format": "string"
  },
  "channelId": {
    "label": "Channel id",
    "format": "string"
  },
  "uploadDate": {
    "label": "Uploaded",
    "format": "string"
  },
  "durationSeconds": {
    "label": "Duration (s)",
    "format": "number"
  },
  "language": {
    "label": "Language",
    "format": "string"
  },
  "matchedLanguageTag": {
    "label": "Matched language tag",
    "format": "string"
  },
  "isAutoGenerated": {
    "label": "Auto-generated",
    "format": "boolean"
  },
  "availableLanguages": {
    "label": "Available languages",
    "format": "array"
  },
  "sourceUrls": {
    "label": "Source urls",
    "format": "array"
  },
  "sourcePosition": {
    "label": "Source position",
    "format": "integer"
  },
  "segments": {
    "label": "Segments",
    "format": "array"
  },
  "chapters": {
    "label": "Chapters",
    "format": "array"
  },
  "plainText": {
    "label": "Plain text",
    "format": "string"
  },
  "srt": {
    "label": "Srt",
    "format": "string"
  },
  "vtt": {
    "label": "Vtt",
    "format": "string"
  }
}
```

## About this Actor

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


## How to integrate an Actor?

This Task's input is already configured above. Use it as-is rather than inventing a new one.

Do not guess an integration path. Every one of them is in the agent quickstart at https://apify.com/agents.md: the Apify MCP server, Agent Skills with the Apify CLI, the JavaScript and Python clients, the REST API, and the account-free path for an agent with no human to sign in. It also carries the rule on stating cost before the first paid run.

For full API examples (JavaScript, Python, CLI, MCP, OpenAPI), see this Task's Actor page: https://apify.com/vonsensey/youtube-channel-transcript-scraper.md

Each client library has reference documentation the quickstart does not restate: [JavaScript/TypeScript](https://docs.apify.com/api/client/js/docs.md) (`npm install apify-client`) and [Python](https://docs.apify.com/api/client/python/docs.md) (`pip install apify-client`).
