# Collect Viral Gaming Videos from TikTok

**Use case:** 

Scrape TikTok for trending gaming videos. Get data on views, likes, shares, and captions for hashtags like #gaming and #twitch.

## Input

```json
{
  "terms": [
    "#gaming",
    "#gamer",
    "#videogames",
    "#twitch"
  ],
  "maxVideosPerTerm": 100,
  "sortBy": "views",
  "minViews": 10000,
  "onlyVerifiedAuthors": false,
  "region": "US",
  "language": "",
  "maxResults": 0,
  "proxyConfiguration": {
    "useApifyProxy": true,
    "apifyProxyGroups": [
      "RESIDENTIAL"
    ],
    "apifyProxyCountry": "US"
  }
}
```

## Output

```json
{
  "foundForTerm": {
    "label": "Found for term",
    "format": "text"
  },
  "description": {
    "label": "Caption",
    "format": "text"
  },
  "playCount": {
    "label": "Views",
    "format": "number"
  },
  "likeCount": {
    "label": "Likes",
    "format": "number"
  },
  "commentCount": {
    "label": "Comments",
    "format": "number"
  },
  "shareCount": {
    "label": "Shares",
    "format": "number"
  },
  "postedAt": {
    "label": "Posted at",
    "format": "text"
  },
  "url": {
    "label": "Video URL",
    "format": "link"
  }
}
```

## About this Actor

This example demonstrates how to use [TikTok Hashtag Scraper - Scrape Videos by Tag](https://apify.com/logiover/tiktok-hashtag-video-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/logiover/tiktok-hashtag-video-scraper) to learn more, explore other use cases, and run it yourself.