# Twitch VOD metadata from video URLs and IDs

**Use case:** 

Run Twitch Scraper for public VOD URLs or IDs and export video titles, views, duration, creation dates, thumbnails, games, broadcasters, and URLs.

## Input

```json
{
  "mode": "videos",
  "targets": [
    "https://www.twitch.tv/videos/2432077809"
  ],
  "maxResults": 30,
  "clipPeriod": "LAST_WEEK",
  "includeRecentVideos": true,
  "includeTopClips": false,
  "recentVideosLimit": 5,
  "topClipsLimit": 5
}
```

## Output

```json
{
  "rowType": {
    "label": "Row type",
    "format": "string"
  },
  "sourceMode": {
    "label": "Source mode",
    "format": "string"
  },
  "sourceTarget": {
    "label": "Source target",
    "format": "string"
  },
  "sourceRank": {
    "label": "Source rank",
    "format": "integer"
  },
  "displayName": {
    "label": "Display name",
    "format": "string"
  },
  "login": {
    "label": "Login",
    "format": "string"
  },
  "title": {
    "label": "Title",
    "format": "string"
  },
  "game": {
    "label": "Game",
    "format": "string"
  },
  "viewersCount": {
    "label": "Viewers",
    "format": "integer"
  },
  "viewCount": {
    "label": "Views",
    "format": "integer"
  },
  "followersCount": {
    "label": "Followers",
    "format": "integer"
  },
  "sourceUrl": {
    "label": "Source URL",
    "format": "string"
  },
  "scrapedAt": {
    "label": "Scraped at",
    "format": "string"
  }
}
```

## About this Actor

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