# Export Twitch channels with recent VODs and clips

**Use case:** 

Collect public Twitch channel profiles with stable IDs, account details, recent archived broadcasts, and top clips in one ready-to-export dataset.

## Input

```json
{
  "startUrls": [
    {
      "url": "https://www.twitch.tv/twitch"
    },
    {
      "url": "https://www.twitch.tv/monstercat"
    }
  ],
  "categories": [
    "Just Chatting"
  ],
  "searchTerms": [
    "minecraft"
  ],
  "maxItems": 2,
  "includeOfflineChannels": true,
  "includeVideos": true,
  "videosPerChannel": 3,
  "includeClips": true,
  "clipsPerChannel": 3,
  "maxEnrichedChannels": 2,
  "allowEmptyResults": false,
  "maxRunSeconds": 240,
  "proxyConfiguration": {
    "useApifyProxy": false
  }
}
```

## Output

```json
{
  "url": {
    "label": "Channel URL",
    "format": "string"
  },
  "channelId": {
    "label": "Channel ID",
    "format": "string"
  },
  "channelName": {
    "label": "Channel login",
    "format": "string"
  },
  "displayName": {
    "label": "Display name",
    "format": "string"
  },
  "channelCreatedAt": {
    "label": "Channel created",
    "format": "string"
  },
  "broadcasterType": {
    "label": "Broadcaster type",
    "format": "string"
  },
  "profileImageUrl": {
    "label": "Profile image",
    "format": "string"
  },
  "offlineImageUrl": {
    "label": "Offline image",
    "format": "string"
  },
  "channelDescription": {
    "label": "Description",
    "format": "string"
  },
  "recentVideos": {
    "label": "Recent VODs",
    "format": "array"
  },
  "topClips": {
    "label": "Top clips",
    "format": "array"
  },
  "warnings": {
    "label": "Warnings",
    "format": "array"
  },
  "scrapedAt": {
    "label": "Scraped at",
    "format": "string"
  }
}
```

## About this Actor

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