# Tiktok Profile Public Metadata Crm Enrichment

**Use case:** 

Collect public TikTok profile metadata for public metadata crm enrichment including bios, public counts, profile links, and recent public video summaries.

## Input

```json
{
  "handles": [
    "tiktok",
    "duolingo",
    "nba"
  ],
  "profileUrls": [
    {
      "url": "https://www.tiktok.com/@tiktok"
    }
  ],
  "maxProfiles": 3,
  "includeRecentVideos": true,
  "maxVideosPerProfile": 3
}
```

## 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.