# Live Stream Archive Scraper for Gaming Channels

**Use case:** 

Retrieve the latest live stream archives from channels like PewDiePie and Markiplier. Get detailed data in CSV, JSON or Excel format.

## Input

```json
{
  "channels": [
    "@PewDiePie",
    "@Markiplier"
  ],
  "contentType": "live",
  "country": "US",
  "language": "en",
  "maxVideos": 50,
  "maxResults": 0
}
```

## Output

```json
{
  "channelTitle": {
    "label": "Channel",
    "format": "string"
  },
  "title": {
    "label": "Video title",
    "format": "string"
  },
  "viewCount": {
    "label": "Views",
    "format": "integer"
  },
  "publishedTime": {
    "label": "Published",
    "format": "string"
  },
  "duration": {
    "label": "Duration",
    "format": "string"
  },
  "videoId": {
    "label": "Video ID",
    "format": "string"
  },
  "url": {
    "label": "Video URL",
    "format": "string"
  }
}
```

## About this Actor

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