# YouTube Channel Content Audit

**Use case:** 

Run a full content audit of any YouTube channel by its @handle. The scraper lists every video the channel has published, each row giving video_title, view_count, publish_time, video_duration, video_url, author_name, cover_image_url and video_id, so you can inventory the whole catalog, spot top performers and see cadence over time. Keep End_date at 2000-01-01 for the complete history.

## Input

```json
{
  "youtube_channels": [
    "@TED"
  ],
  "End_date": "2000-01-01"
}
```

## Output

```json
{
  "video_url": {
    "label": "Video URL",
    "format": "link"
  },
  "author_name": {
    "label": "Author Name",
    "format": "text"
  },
  "video_title": {
    "label": "Video Title",
    "format": "text"
  },
  "publish_time": {
    "label": "Publish Time",
    "format": "text"
  },
  "view_count": {
    "label": "View Count",
    "format": "integer"
  },
  "video_duration": {
    "label": "Video Duration",
    "format": "text"
  },
  "cover_image_url": {
    "label": "Cover Image URL",
    "format": "image"
  },
  "video_id": {
    "label": "Video ID",
    "format": "text"
  }
}
```

## About this Actor

This example demonstrates how to use [YouTube Channel Video Scraper](https://apify.com/delicious_zebu/youtube-channel-video-scraper.md) with a specific input configuration. Visit the [Actor detail page](https://apify.com/delicious_zebu/youtube-channel-video-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/delicious_zebu/youtube-channel-video-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`).
