# Scrape Viral Clips From Last Week - Twitch

**Use case:** 

Collect viral Twitch clips from the past week with Clip, Streamer, Game, Views and Created. Export to JSON, CSV or Excel.

## Input

```json
{
  "mode": "clips",
  "channelUsernames": [
    "pokimane",
    "shroud"
  ],
  "gameNames": [
    "Just Chatting"
  ],
  "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": "Clip",
    "format": "text"
  },
  "broadcasterDisplayName": {
    "label": "Streamer",
    "format": "text"
  },
  "game": {
    "label": "Game",
    "format": "text"
  },
  "viewCount": {
    "label": "Views",
    "format": "number"
  },
  "durationSeconds": {
    "label": "Secs",
    "format": "number"
  },
  "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.