# MrBeast YouTube Video Details Export

**Use case:** 

Scrape all videos from MrBeast's channel, including titles, views, durations, and thumbnails. Get structured data without login or API key.

## Input

```json
{
  "startUrls": [
    {
      "url": "https://www.youtube.com/@MrBeast/videos"
    }
  ],
  "videosPerChannel": 100,
  "maxItems": 100
}
```

## Output

```json
{
  "title": {
    "label": "Title"
  },
  "url": {
    "label": "Video",
    "format": "link"
  },
  "duration": {
    "label": "Duration (s)",
    "format": "number"
  },
  "viewCount": {
    "label": "Views",
    "format": "number"
  },
  "uploader": {
    "label": "Uploader"
  },
  "channelUrl": {
    "label": "Channel",
    "format": "link"
  }
}
```

## About this Actor

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