# Bulk TikTok creator profile scraper

**Use case:** 

Enrich a list of TikTok handles with profile stats, for creator discovery and outreach.

## Input

```json
{
  "usernames": [
    "@tiktok",
    "@netflix",
    "@nba"
  ],
  "maxVideosPerUser": 0,
  "concurrency": 4,
  "delayBetweenRequests": 1,
  "proxyConfiguration": {
    "useApifyProxy": false
  }
}
```

## Output

```json
{
  "handle": {
    "label": "Handle",
    "format": "text"
  },
  "nickname": {
    "label": "Name",
    "format": "text"
  },
  "verified": {
    "label": "Verified",
    "format": "boolean"
  },
  "followers": {
    "label": "Followers",
    "format": "number"
  },
  "following": {
    "label": "Following",
    "format": "number"
  },
  "likes": {
    "label": "Likes",
    "format": "number"
  },
  "videoCount": {
    "label": "Videos",
    "format": "number"
  },
  "bio": {
    "label": "Bio",
    "format": "text"
  },
  "avatarUrl": {
    "label": "Avatar",
    "format": "image"
  },
  "profileUrl": {
    "label": "Profile",
    "format": "link"
  }
}
```

## About this Actor

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