# Scrape Channel VODs & Past Broadcasts - Twitch

**Use case:** 

Pull past broadcasts and VODs from a Twitch channel with Video, Game, Views, Mins and Created. Export to JSON, CSV or Excel.

## Input

```json
{
  "mode": "videos",
  "channelUsernames": [
    "xqc"
  ],
  "searchType": "channels",
  "maxResults": 50,
  "clipPeriod": "LAST_WEEK",
  "videoType": "ARCHIVE",
  "videoSort": "TIME",
  "includeStreamerLeads": false,
  "enrichLeadWebsites": false,
  "monitorMode": false,
  "monitorKey": "default",
  "proxyConfiguration": {
    "useApifyProxy": true,
    "apifyProxyGroups": [
      "RESIDENTIAL"
    ]
  }
}
```

## Output

```json
{
  "title": {
    "label": "Video",
    "format": "text"
  },
  "broadcasterDisplayName": {
    "label": "Streamer",
    "format": "text"
  },
  "game": {
    "label": "Game",
    "format": "text"
  },
  "viewCount": {
    "label": "Views",
    "format": "number"
  },
  "durationMinutes": {
    "label": "Mins",
    "format": "number"
  },
  "videoType": {
    "label": "Type",
    "format": "text"
  },
  "createdAt": {
    "label": "Created",
    "format": "text"
  },
  "url": {
    "label": "URL",
    "format": "link"
  }
}
```

## About this Actor

This example demonstrates how to use [Twitch Scraper - Channels, Streams, Clips & Streamer Leads](https://apify.com/scrapesage/twitch-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/scrapesage/twitch-scraper) to learn more, explore other use cases, and run it yourself.