# Twitch channel stats for a list of streamers

**Use case:** 

Returns one row per Twitch channel with followers, partner and affiliate status, bio, avatar, account age, whether the channel is live right now with viewers and category, the previous broadcast, and the social links the streamer published (YouTube, X, Instagram, TikTok, Discord). Up to 30 channels per request. Channels that do not exist come back free with an errorCode.

## Input

```json
{
  "mode": "channels",
  "channelNames": [
    "ibai",
    "kaicenat",
    "jynxzi",
    "xqc",
    "auronplay"
  ],
  "minViewers": 0,
  "sortBy": "viewers",
  "clipSort": "views",
  "clipPeriod": "week",
  "videoType": "archive",
  "includeSocials": true,
  "maxResults": 30,
  "proxyConfiguration": {
    "useApifyProxy": true
  }
}
```

## Output

```json
{
  "channelName": {
    "label": "channelName",
    "format": "text"
  },
  "displayName": {
    "label": "displayName",
    "format": "text"
  },
  "avatarUrl": {
    "label": "avatarUrl",
    "format": "image"
  },
  "followersCount": {
    "label": "followersCount",
    "format": "number"
  },
  "isPartner": {
    "label": "isPartner",
    "format": "boolean"
  },
  "isAffiliate": {
    "label": "isAffiliate",
    "format": "boolean"
  },
  "isLive": {
    "label": "isLive",
    "format": "boolean"
  },
  "currentViewers": {
    "label": "currentViewers",
    "format": "number"
  },
  "currentStreamTitle": {
    "label": "currentStreamTitle",
    "format": "text"
  },
  "currentCategory": {
    "label": "currentCategory",
    "format": "text"
  },
  "currentStreamLanguage": {
    "label": "currentStreamLanguage",
    "format": "text"
  },
  "currentStreamTags": {
    "label": "currentStreamTags",
    "format": "array"
  },
  "bio": {
    "label": "bio",
    "format": "text"
  },
  "twitter": {
    "label": "twitter",
    "format": "link"
  },
  "instagram": {
    "label": "instagram",
    "format": "link"
  },
  "youtube": {
    "label": "youtube",
    "format": "link"
  },
  "tiktok": {
    "label": "tiktok",
    "format": "link"
  },
  "discord": {
    "label": "discord",
    "format": "text"
  },
  "lastBroadcastAt": {
    "label": "lastBroadcastAt",
    "format": "date"
  },
  "lastCategory": {
    "label": "lastCategory",
    "format": "text"
  },
  "accountCreatedAt": {
    "label": "accountCreatedAt",
    "format": "date"
  },
  "channelUrl": {
    "label": "channelUrl",
    "format": "link"
  },
  "error": {
    "label": "error",
    "format": "text"
  },
  "errorCode": {
    "label": "errorCode",
    "format": "text"
  },
  "scrapedAt": {
    "label": "scrapedAt",
    "format": "date"
  }
}
```

## About this Actor

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


## How to integrate an Actor?

This Task's input is already configured above. Use it as-is rather than inventing a new one.

Do not guess an integration path. Every one of them is in the agent quickstart at https://apify.com/agents.md: the Apify MCP server, Agent Skills with the Apify CLI, the JavaScript and Python clients, the REST API, and the account-free path for an agent with no human to sign in. It also carries the rule on stating cost before the first paid run.

For full API examples (JavaScript, Python, CLI, MCP, OpenAPI), see this Task's Actor page: https://apify.com/scrapewise/twitch-scraper.md

Each client library has reference documentation the quickstart does not restate: [JavaScript/TypeScript](https://docs.apify.com/api/client/js/docs.md) (`npm install apify-client`) and [Python](https://docs.apify.com/api/client/python/docs.md) (`pip install apify-client`).
