# Scrape latest YouTube channel videos

**Use case:** 

Quickly export latest YouTube channel videos with titles, URLs, thumbnails, views, publish dates, durations, and channel metadata.

## Input

```json
{
  "channel": [
    "https://www.youtube.com/@MKTV"
  ],
  "keywords": false,
  "needVideoDetails": false,
  "numberOfResults": 8,
  "uniqueChannels": false,
  "maxVideosPerChannel": 8,
  "localeHl": "en",
  "localeGl": "US",
  "acceptLanguage": "en-US,en;q=0.9",
  "maxVideoDetailConcurrency": 20,
  "maxChannelConcurrency": 2,
  "fastVideoDetailConcurrency": 20,
  "proxyMode": "auto",
  "videoDetailProxyStrategy": "auto",
  "transcriptMode": "standard",
  "adaptiveTranscriptProxyFallback": true,
  "adaptiveTranscriptRetryConcurrency": 20,
  "residentialFallbackForMissingTranscripts": false,
  "streamDatasetItems": true,
  "resetCheckpoint": false
}
```

## Output

```json
{
  "title": {
    "label": "Video title",
    "format": "string"
  },
  "transcript": {
    "label": "Transcript",
    "format": "string"
  },
  "transcriptStatus": {
    "label": "Transcript status",
    "format": "string"
  },
  "channelUrl": {
    "label": "Channel URL",
    "format": "string"
  },
  "channelDescription": {
    "label": "Channel description",
    "format": "string"
  },
  "channelLinksText": {
    "label": "Channel links text",
    "format": "string"
  },
  "videoUrl": {
    "label": "Video URL",
    "format": "string"
  },
  "coverImage": {
    "label": "Video thumbnail",
    "format": "string"
  },
  "publishedAt": {
    "label": "Published date",
    "format": "string"
  },
  "author": {
    "label": "Channel handle",
    "format": "string"
  },
  "duration": {
    "label": "Duration",
    "format": "string"
  },
  "viewCount": {
    "label": "View count",
    "format": "number"
  },
  "likeCount": {
    "label": "Like count",
    "format": "number"
  },
  "commentCount": {
    "label": "Comment count",
    "format": "number"
  },
  "subscriberCount": {
    "label": "Subscriber count",
    "format": "number"
  },
  "amountOfVideos": {
    "label": "Channel video count",
    "format": "number"
  },
  "channelTotalViews": {
    "label": "Channel total views",
    "format": "number"
  },
  "isLive": {
    "label": "Live video",
    "format": "boolean"
  },
  "isChannelVerified": {
    "label": "Channel verified",
    "format": "boolean"
  },
  "scrapingStatus": {
    "label": "Scraping status",
    "format": "string"
  }
}
```

## About this Actor

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