# Enrich creator CRMs with TikTok profile data

**Use case:** 

Add public TikTok bios, follower counts, likes, profile URLs, avatars, verification status, and recent video summaries to creator CRM or influencer lists.

## Input

```json
{
  "handles": [
    "tiktok",
    "natgeo"
  ],
  "profileUrls": [
    {
      "url": "https://www.tiktok.com/@tiktok"
    }
  ],
  "maxProfiles": 2,
  "includeRecentVideos": true,
  "maxVideosPerProfile": 5
}
```

## Output

```json
{
  "profileUrl": {
    "label": "Profile URL",
    "format": "string"
  },
  "handle": {
    "label": "Handle",
    "format": "string"
  },
  "nickname": {
    "label": "Nickname",
    "format": "string"
  },
  "verified": {
    "label": "Verified",
    "format": "boolean"
  },
  "privateAccount": {
    "label": "Private account",
    "format": "boolean"
  },
  "followers": {
    "label": "Followers",
    "format": "number"
  },
  "following": {
    "label": "Following",
    "format": "number"
  },
  "likes": {
    "label": "Likes",
    "format": "number"
  },
  "videosCount": {
    "label": "Videos",
    "format": "number"
  },
  "bioLink": {
    "label": "Bio link",
    "format": "string"
  },
  "scrapedAt": {
    "label": "Scraped at",
    "format": "string"
  }
}
```

## About this Actor

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