# Generate TikTok Marketing Campaign Ideas from Top Trends

**Use case:** 

Scrape the top 100 trending videos in key marketing-relevant TikTok categories like 'Fashion & Beauty' and 'Food'. This helps marketers identify popular formats

## Input

```json
{
  "categories": [
    {
      "id": 4,
      "name": "Fashion & Beauty"
    },
    {
      "id": 6,
      "name": "Food"
    },
    {
      "id": 16,
      "name": "DIY & Life Hacks"
    }
  ],
  "maxItemsPerCategory": 100,
  "autoDiscoverCategories": false
}
```

## Output

```json
{
  "categoryName": {
    "label": "Category",
    "format": "text"
  },
  "categoryId": {
    "label": "Category ID",
    "format": "number"
  },
  "feedType": {
    "label": "Feed Type",
    "format": "text"
  },
  "postId": {
    "label": "Post ID",
    "format": "text"
  },
  "caption": {
    "label": "Caption",
    "format": "text"
  },
  "likeCount": {
    "label": "Likes",
    "format": "number"
  },
  "playCount": {
    "label": "Plays",
    "format": "number"
  },
  "commentCount": {
    "label": "Comments",
    "format": "number"
  },
  "createdAt": {
    "label": "Created At",
    "format": "text"
  },
  "postUrl": {
    "label": "Post URL",
    "format": "link"
  }
}
```

## About this Actor

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