# Top 100 Twitch live streams in English right now

**Use case:** 

Returns the 100 most watched live streams on Twitch in English at the moment of the run, with channel login, display name, followers, current viewers, stream title, category, tags, start time and thumbnail. Schedule it every hour to build a viewer history per channel and per category. Gambling and casino categories are never included.

## Input

```json
{
  "mode": "liveStreams",
  "channelNames": [
    "ibai",
    "kaicenat"
  ],
  "languages": [
    "en"
  ],
  "minViewers": 0,
  "sortBy": "viewers",
  "clipSort": "views",
  "clipPeriod": "week",
  "videoType": "archive",
  "includeSocials": true,
  "maxResults": 100,
  "proxyConfiguration": {
    "useApifyProxy": true
  }
}
```

## Output

```json
{
  "rank": {
    "label": "rank",
    "format": "number"
  },
  "channelName": {
    "label": "channelName",
    "format": "text"
  },
  "displayName": {
    "label": "displayName",
    "format": "text"
  },
  "viewers": {
    "label": "viewers",
    "format": "number"
  },
  "followersCount": {
    "label": "followersCount",
    "format": "number"
  },
  "title": {
    "label": "title",
    "format": "text"
  },
  "category": {
    "label": "category",
    "format": "text"
  },
  "language": {
    "label": "language",
    "format": "text"
  },
  "tags": {
    "label": "tags",
    "format": "array"
  },
  "startedAt": {
    "label": "startedAt",
    "format": "date"
  },
  "thumbnailUrl": {
    "label": "thumbnailUrl",
    "format": "image"
  },
  "channelUrl": {
    "label": "channelUrl",
    "format": "link"
  },
  "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`).
