# Identify Trending Music & Audio on TikTok

**Use case:** 

Scrape posts from general trending hashtags to extract frequently used music and audio metadata. This helps content creators and marketers select popular sounds

## Input

```json
{
  "hashtags": [
    "tiktoktrends",
    "trendingaudio",
    "soundviral",
    "newmusic",
    "dancetrends"
  ],
  "mode": "posts",
  "maxPostsPerHashtag": 50,
  "includeHashtagMetadata": false
}
```

## Output

```json
{
  "recordType": {
    "label": "Type",
    "format": "text"
  },
  "searchedHashtag": {
    "label": "Hashtag",
    "format": "text"
  },
  "hashtagName": {
    "label": "Hashtag Name",
    "format": "text"
  },
  "videoCount": {
    "label": "Video Count",
    "format": "text"
  },
  "viewCount": {
    "label": "View Count",
    "format": "text"
  },
  "postId": {
    "label": "Post ID",
    "format": "text"
  },
  "caption": {
    "label": "Caption",
    "format": "text"
  },
  "playCount": {
    "label": "Plays",
    "format": "number"
  },
  "likeCount": {
    "label": "Likes",
    "format": "number"
  },
  "commentCount": {
    "label": "Comments",
    "format": "number"
  },
  "postUrl": {
    "label": "Post URL",
    "format": "link"
  }
}
```

## About this Actor

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