# Export live Twitch channels from Just Chatting

**Use case:** 

Collect a current sample of live Twitch Just Chatting channels with viewer counts, stream titles, categories, tags, and stable IDs.

## Input

```json
{
  "startUrls": [
    {
      "url": "https://www.twitch.tv/directory/category/just-chatting"
    },
    {
      "url": "https://www.twitch.tv/twitch"
    }
  ],
  "categories": [
    "Just Chatting"
  ],
  "searchTerms": [
    "minecraft"
  ],
  "maxItems": 10,
  "includeOfflineChannels": false,
  "includeVideos": false,
  "videosPerChannel": 3,
  "includeClips": false,
  "clipsPerChannel": 3,
  "maxEnrichedChannels": 20,
  "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"
  },
  "broadcasterType": {
    "label": "Broadcaster type",
    "format": "string"
  },
  "isLive": {
    "label": "Is live",
    "format": "boolean"
  },
  "streamTitle": {
    "label": "Stream title",
    "format": "string"
  },
  "category": {
    "label": "Category",
    "format": "string"
  },
  "viewerCount": {
    "label": "Viewer count",
    "format": "integer"
  },
  "startedAt": {
    "label": "Started at",
    "format": "string"
  },
  "language": {
    "label": "Language",
    "format": "string"
  },
  "tags": {
    "label": "Tags",
    "format": "array"
  },
  "thumbnailUrl": {
    "label": "Stream thumbnail",
    "format": "string"
  },
  "profileImageUrl": {
    "label": "Profile image",
    "format": "string"
  },
  "sourceType": {
    "label": "Source type",
    "format": "string"
  },
  "sourceValue": {
    "label": "Source value",
    "format": "string"
  },
  "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.