# Get a Channel's Latest Videos by Handle

**Use case:** 

Pass a YouTube channel @handle and set End_date to a recent date like 2026-01-01, and the scraper returns only the videos published from today back to that date instead of the whole catalog. Each video row includes video_url, video_title, author_name, publish_time, view_count, video_duration, cover_image_url and video_id, so you can see a channel's newest uploads at a glance.

## Input

```json
{
  "youtube_channels": [
    "@mkbhd"
  ],
  "End_date": "2026-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`).
