# Build a TikTok influencer database

**Use case:** Spot viral content & creators

Turn a list of TikTok handles into a structured influencer database. Get follower counts, video engagement, posting frequency, and hashtags for each creator.

## Input

```json
{
  "profiles": [
    "hannahbower2",
    "demibagby",
    "whitneyysimmons",
    "pamela_rf",
    "kelsey.wells"
  ],
  "profileScrapeSections": [
    "videos"
  ],
  "profileSorting": "popular",
  "resultsPerPage": 5,
  "oldestPostDateUnified": "2025-01-01",
  "newestPostDate": "2024-12-31",
  "mostDiggs": 1000000,
  "leastDiggs": 1000,
  "maxFollowersPerProfile": 0,
  "maxFollowingPerProfile": 0,
  "excludePinnedPosts": true,
  "shouldDownloadVideos": false,
  "shouldDownloadCovers": false,
  "downloadSubtitlesOptions": "NEVER_DOWNLOAD_SUBTITLES",
  "shouldDownloadSlideshowImages": false,
  "shouldDownloadAvatars": false,
  "videoKvStoreIdOrName": "tiktok-videos"
}
```

## Output

```json
{
  "authorMeta.avatar": {
    "label": "Avatar",
    "format": "string"
  },
  "authorMeta.name": {
    "label": "Name",
    "format": "string"
  },
  "authorMeta.nickName": {
    "label": "Nickname",
    "format": "string"
  },
  "authorMeta.verified": {
    "label": "Verified?",
    "format": "boolean"
  },
  "authorMeta.signature": {
    "label": "Signature",
    "format": "string"
  },
  "authorMeta.fans": {
    "label": "Author Fans",
    "format": "number"
  },
  "authorMeta.video": {
    "label": "Author videos",
    "format": "number"
  },
  "authorMeta.privateAccount": {
    "label": "Private account?",
    "format": "boolean"
  },
  "authorMeta.ttSeller": {
    "label": "TikTok seller?",
    "format": "boolean"
  },
  "authorMeta.bioLink": {
    "label": "Bio link",
    "format": "string"
  },
  "authorMeta.id": {
    "label": "Author ID",
    "format": "string"
  },
  "text": {
    "label": "Text",
    "format": "string"
  }
}
```

## About this Actor

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