# Collect TikTok trend videos for topic research

**Use case:** 

Collect public TikTok videos for a topic-focused research set with creator details, captions, hashtags, and engagement metrics.

## Input

```json
{
  "searchQueries": [
    "morning routine"
  ],
  "hashtags": [
    "fitness",
    "running"
  ],
  "maxResultsPerQuery": 25,
  "sortBy": "relevance",
  "datePosted": "this-month",
  "region": "US",
  "minPlays": 5000,
  "minLikes": 250,
  "minComments": 0,
  "minShares": 0,
  "minDurationSeconds": 0,
  "maxDurationSeconds": 0,
  "includePhotoPosts": false,
  "maxPagesPerQuery": 5,
  "providerOrder": "scrapecreators-first",
  "includeRawData": false
}
```

## Output

```json
{
  "authorUsername": {
    "label": "Author username",
    "format": "string"
  },
  "caption": {
    "label": "Caption",
    "format": "string"
  },
  "playCount": {
    "label": "Plays",
    "format": "integer"
  },
  "likeCount": {
    "label": "Likes",
    "format": "integer"
  },
  "commentCount": {
    "label": "Comments",
    "format": "integer"
  },
  "shareCount": {
    "label": "Shares",
    "format": "integer"
  },
  "engagementRate": {
    "label": "Engagement rate",
    "format": "number"
  },
  "durationSeconds": {
    "label": "Duration (s)",
    "format": "integer"
  },
  "createdAt": {
    "label": "Created at",
    "format": "string"
  },
  "videoUrl": {
    "label": "Video URL",
    "format": "string"
  }
}
```

## About this Actor

This example demonstrates how to use [TikTok Video Search Scraper - Metrics & Filters](https://apify.com/khadinakbar/tiktok-video-search-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/khadinakbar/tiktok-video-search-scraper) to learn more, explore other use cases, and run it yourself.