# TikTok Profile Analytics Scraper

**Use case:** 

Scrape TikTok profiles and export usernames, nicknames, bios, follower counts, hearts, video counts, verification, and profile URLs.

## Input

```json
{
  "mode": "profiles",
  "usernames": [
    "charlidamelio",
    "khaby.lame"
  ],
  "videoUrls": [
    "https://www.tiktok.com/@khaby.lame/video/7025640067309924614"
  ],
  "maxVideos": 10
}
```

## Output

```json
{
  "avatarUrl": {
    "label": "Avatar",
    "format": "image"
  },
  "username": {
    "label": "Username",
    "format": "text"
  },
  "nickname": {
    "label": "Name",
    "format": "text"
  },
  "verified": {
    "label": "Verified",
    "format": "boolean"
  },
  "followersCount": {
    "label": "Followers count",
    "format": "number"
  },
  "followingCount": {
    "label": "Following count",
    "format": "number"
  },
  "heartsCount": {
    "label": "Hearts count",
    "format": "number"
  },
  "videosCount": {
    "label": "Videos count",
    "format": "number"
  },
  "url": {
    "label": "URL",
    "format": "link"
  }
}
```

## About this Actor

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