# TikTok Profile Data Extractor

**Use case:** 

Gather detailed TikTok profile information, including followers, likes, and bio. Receive structured JSON with account metrics for multiple profiles.

## Input

```json
{
  "profileUrls": [
    "https://www.tiktok.com/@arianagrande",
    "https://www.tiktok.com/@franksinatra"
  ],
  "proxyConfiguration": {
    "useApifyProxy": false
  }
}
```

## Output

```json
{
  "profileUrl": {
    "label": "Profile URL",
    "format": "link"
  },
  "username": {
    "label": "Username",
    "format": "text"
  },
  "nickname": {
    "label": "Nickname",
    "format": "text"
  },
  "followers": {
    "label": "Followers",
    "format": "number"
  },
  "following": {
    "label": "Following",
    "format": "number"
  },
  "likes": {
    "label": "Likes",
    "format": "number"
  },
  "bio": {
    "label": "Bio",
    "format": "text"
  }
}
```

## About this Actor

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