# Build a TikTok Influencer Database From a Handle List

**Use case:** 

Build a TikTok influencer database from a handle list - recent videos with engagement stats, follower counts, and verified flags per creator. No login needed.

## Input

```json
{
  "profiles": [
    "mikaylajnogueira",
    "bailey.sarian",
    "nikkietutorials",
    "hudabeauty",
    "bretmanrock"
  ],
  "sort_by": "latest",
  "max_items_per_profile": 10,
  "region": "US",
  "trim": false
}
```

## Output

```json
{
  "id": {
    "label": "Video ID",
    "format": "text"
  },
  "url": {
    "label": "URL",
    "format": "link"
  },
  "created_at": {
    "label": "Posted",
    "format": "date"
  },
  "stats.views": {
    "label": "Views",
    "format": "number"
  },
  "stats.likes": {
    "label": "Likes",
    "format": "number"
  },
  "stats.comments": {
    "label": "Comments",
    "format": "number"
  },
  "stats.shares": {
    "label": "Shares",
    "format": "number"
  },
  "stats.saves": {
    "label": "Saves",
    "format": "number"
  },
  "author.handle": {
    "label": "Handle",
    "format": "text"
  },
  "author.follower_count": {
    "label": "Followers",
    "format": "number"
  },
  "is_pinned": {
    "label": "Pinned",
    "format": "boolean"
  },
  "is_ad": {
    "label": "Ad",
    "format": "boolean"
  },
  "is_shop_promo": {
    "label": "Shop",
    "format": "boolean"
  }
}
```

## About this Actor

This example demonstrates how to use [TikTok Profile Posts - Bulk Video Scraper [NO LOGIN] ✅](https://apify.com/unseenuser/tiktok-posts) with a specific input configuration. Visit the [Actor detail page](https://apify.com/unseenuser/tiktok-posts) to learn more, explore other use cases, and run it yourself.