# Track a YouTube channel's latest videos

**Use case:** 

Recent uploads for any channel with title, views, duration and publish date. No API key and no daily quota.

## Input

```json
{
  "channels": [
    "https://www.youtube.com/@mkbhd"
  ],
  "maxVideosPerChannel": 15,
  "maxResults": 200
}
```

## Output

```json
{
  "title": {
    "label": "Title",
    "format": "string"
  },
  "channelName": {
    "label": "Channel",
    "format": "string"
  },
  "viewCount": {
    "label": "Views",
    "format": "number"
  },
  "publishedAt": {
    "label": "Published",
    "format": "string"
  },
  "url": {
    "label": "Watch URL",
    "format": "string"
  }
}
```

## About this Actor

This example demonstrates how to use [YouTube Latest Videos: No API Key, With View Counts](https://apify.com/glitchbound/youtube-latest-videos-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/glitchbound/youtube-latest-videos-scraper) to learn more, explore other use cases, and run it yourself.