# Find live Twitch streamers by game

**Use case:** 

Discover who is streaming a game right now, with viewer counts, titles and tags. 18 live VALORANT streams above 500 viewers in 5 seconds. No Twitch API key.

## Input

```json
{
  "mode": "live_streams",
  "channelLogins": [
    "shroud",
    "pokimane",
    "xqc"
  ],
  "searchQuery": "valorant",
  "gameFilter": "VALORANT",
  "minViewers": 500,
  "clipsPeriod": "LAST_WEEK",
  "videoType": "ARCHIVE",
  "maxResults": 50
}
```

## Output

```json
{
  "login": {
    "label": "Login",
    "format": "text"
  },
  "displayName": {
    "label": "Display Name",
    "format": "text"
  },
  "followersCount": {
    "label": "Followers",
    "format": "number"
  },
  "isLive": {
    "label": "Live",
    "format": "boolean"
  },
  "viewersCount": {
    "label": "Viewers",
    "format": "number"
  },
  "game": {
    "label": "Game",
    "format": "text"
  },
  "url": {
    "label": "URL",
    "format": "link"
  }
}
```

## About this Actor

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