# TikTok Profile Scraper

**Use case:** 

Pull public TikTok profiles by handle: nickname, bio, follower, following, likes and video counts, verification, region and avatar. Give it a list of usernames and export the rows. No login and no cookies - only what a logged-out visitor can see.

## Input

```json
{
  "profiles": [
    "nasa",
    "natgeo"
  ],
  "maxItems": 50,
  "maxVideosPerSource": 0,
  "includeVideos": true,
  "includeVideoDetails": true,
  "outputTypes": [
    "profile"
  ],
  "minPlayCount": 0,
  "minDiggCount": 0,
  "minCommentCount": 0,
  "onlyNewOrChanged": false,
  "emitUnchanged": false,
  "compactOutput": false,
  "excludeEmptyFields": false,
  "concurrency": 4
}
```

## Output

```json
{
  "unique_id": {
    "label": "Unique Id",
    "format": "string"
  },
  "nickname": {
    "label": "Nickname",
    "format": "string"
  },
  "profile_url": {
    "label": "Profile Url",
    "format": "string"
  },
  "bio": {
    "label": "Bio",
    "format": "string"
  },
  "bio_link": {
    "label": "Bio Link",
    "format": "string"
  },
  "verified": {
    "label": "Verified",
    "format": "boolean"
  },
  "private_account": {
    "label": "Private Account",
    "format": "boolean"
  },
  "follower_count": {
    "label": "Follower Count",
    "format": "integer"
  },
  "following_count": {
    "label": "Following Count",
    "format": "integer"
  },
  "heart_count": {
    "label": "Heart Count",
    "format": "integer"
  },
  "video_count": {
    "label": "Video Count",
    "format": "integer"
  },
  "friend_count": {
    "label": "Friend Count",
    "format": "integer"
  },
  "account_created_at": {
    "label": "Account Created At",
    "format": "string"
  },
  "is_commerce_account": {
    "label": "Is Commerce Account",
    "format": "boolean"
  },
  "videos_collected": {
    "label": "Videos Collected",
    "format": "integer"
  }
}
```

## About this Actor

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


## How to integrate an Actor?

This Task's input is already configured above. Use it as-is rather than inventing a new one.

Do not guess an integration path. Every one of them is in the agent quickstart at https://apify.com/agents.md: the Apify MCP server, Agent Skills with the Apify CLI, the JavaScript and Python clients, the REST API, and the account-free path for an agent with no human to sign in. It also carries the rule on stating cost before the first paid run.

For full API examples (JavaScript, Python, CLI, MCP, OpenAPI), see this Task's Actor page: https://apify.com/snow_leo_data/tiktok-scraper.md

Each client library has reference documentation the quickstart does not restate: [JavaScript/TypeScript](https://docs.apify.com/api/client/js/docs.md) (`npm install apify-client`) and [Python](https://docs.apify.com/api/client/python/docs.md) (`pip install apify-client`).
