# Top live Twitch streams right now

**Use case:** 

Runs the `topStreams` mode and returns the 30 most-watched live streams on Twitch right now — streamer, title, game/category, viewer count, language, stream start time, tags, thumbnail and the channel URL. No login or API key. Twitch caps this feed at 30.

## Input

```json
{
  "mode": "topStreams",
  "channelUsernames": [
    "shroud",
    "pokimane",
    "xqc"
  ],
  "searchQuery": "valorant",
  "gameName": "League of Legends",
  "maxResults": 30,
  "clipPeriod": "LAST_WEEK",
  "includeVideos": true,
  "includeClips": false,
  "proxyConfiguration": {
    "useApifyProxy": true
  }
}
```

## Output

```json
{
  "login": {
    "label": "Login",
    "format": "text"
  },
  "displayName": {
    "label": "Display name",
    "format": "text"
  },
  "broadcasterLogin": {
    "label": "Broadcaster",
    "format": "text"
  },
  "broadcasterDisplayName": {
    "label": "Broadcaster name",
    "format": "text"
  },
  "name": {
    "label": "Game",
    "format": "text"
  },
  "title": {
    "label": "Title",
    "format": "text"
  },
  "game": {
    "label": "Game",
    "format": "text"
  },
  "currentGame": {
    "label": "Current game",
    "format": "text"
  },
  "viewersCount": {
    "label": "Viewers",
    "format": "number"
  },
  "currentViewers": {
    "label": "Viewers",
    "format": "number"
  },
  "broadcastersCount": {
    "label": "Live channels",
    "format": "number"
  },
  "followersCount": {
    "label": "Followers",
    "format": "number"
  },
  "broadcasterFollowers": {
    "label": "Followers",
    "format": "number"
  },
  "viewCount": {
    "label": "Views",
    "format": "number"
  },
  "isLive": {
    "label": "Live",
    "format": "boolean"
  },
  "isPartner": {
    "label": "Partner",
    "format": "boolean"
  },
  "url": {
    "label": "URL",
    "format": "link"
  }
}
```

## About this Actor

This example demonstrates how to use [Twitch Scraper](https://apify.com/parsebird/twitch-scraper.md) with a specific input configuration. Visit the [Actor detail page](https://apify.com/parsebird/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/parsebird/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`).
