# Scrape Top Twitch Streams for Just Chatting

**Use case:** 

Export live Twitch stream data for the Just Chatting category, including channels and stream metrics.

## Input

```json
{
  "mode": "gameStreams",
  "channelUsernames": [
    "shroud",
    "pokimane"
  ],
  "searchQuery": "gaming",
  "gameName": "Just Chatting",
  "maxResults": 30,
  "clipPeriod": "LAST_WEEK",
  "includeVideos": true,
  "includeClips": false
}
```

## Output

```json
{
  "profileImageUrl": {
    "label": "Avatar",
    "format": "image"
  },
  "login": {
    "label": "Username",
    "format": "text"
  },
  "displayName": {
    "label": "Display name",
    "format": "text"
  },
  "followersCount": {
    "label": "Followers count",
    "format": "number"
  },
  "isPartner": {
    "label": "Is partner",
    "format": "boolean"
  },
  "isLive": {
    "label": "Is live",
    "format": "boolean"
  },
  "currentViewers": {
    "label": "Current viewers",
    "format": "number"
  },
  "currentGame": {
    "label": "Current game",
    "format": "text"
  },
  "streamTitle": {
    "label": "Stream title",
    "format": "text"
  },
  "url": {
    "label": "URL",
    "format": "link"
  },
  "createdAt": {
    "label": "Created at",
    "format": "date"
  }
}
```

## About this Actor

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