# Tiktok Profile Scraper (`futurizerush/tiktok-profile-scraper`) Actor

TikTok Profile Scraper — Extract 24 data points from any public TikTok profile including followers, likes, bio, business info, and account age. No login required.

- **URL**: https://apify.com/futurizerush/tiktok-profile-scraper.md
- **Developed by:** [Rush](https://apify.com/futurizerush) (community)
- **Categories:** Social media, AI, Agents
- **Stats:** 32 total users, 8 monthly users, 98.2% runs succeeded, 1 bookmarks
- **User rating**: 5.00 out of 5 stars

## Pricing

from $2.50 / 1,000 results

This Actor is paid per event. You are not charged for the Apify platform usage, but only a fixed price for specific events.
Since this Actor supports Apify Store discounts, the price gets lower the higher subscription plan you have.

Learn more: https://docs.apify.com/platform/actors/running/actors-in-store#pay-per-event

## What's an Apify Actor?

Actors are a software tools running on the Apify platform, for all kinds of web data extraction and automation use cases.
In Batch mode, an Actor accepts a well-defined JSON input, performs an action which can take anything from a few seconds to a few hours,
and optionally produces a well-defined JSON output, datasets with results, or files in key-value store.
In Standby mode, an Actor provides a web server which can be used as a website, API, or an MCP server.
Actors are written with capital "A".

## How to integrate an Actor?

If asked about integration, you help developers integrate Actors into their projects.
You adapt to their stack and deliver integrations that are safe, well-documented, and production-ready.
The best way to integrate Actors is as follows.

In JavaScript/TypeScript projects, use official [JavaScript/TypeScript client](https://docs.apify.com/api/client/js.md):

```bash
npm install apify-client
```

In Python projects, use official [Python client library](https://docs.apify.com/api/client/python.md):

```bash
pip install apify-client
```

In shell scripts, use [Apify CLI](https://docs.apify.com/cli/docs.md):

````bash
# MacOS / Linux
curl -fsSL https://apify.com/install-cli.sh | bash
# Windows
irm https://apify.com/install-cli.ps1 | iex
```bash

In AI frameworks, you might use the [Apify MCP server](https://docs.apify.com/platform/integrations/mcp.md).

If your project is in a different language, use the [REST API](https://docs.apify.com/api/v2.md).

For usage examples, see the [API](#api) section below.

For more details, see Apify documentation as [Markdown index](https://docs.apify.com/llms.txt) and [Markdown full-text](https://docs.apify.com/llms-full.txt).


# README

## TikTok Profile Scraper

Extract detailed profile data from public TikTok accounts. Get follower counts, engagement stats, account age, business information, and more — no login required.

### What data can you get?

For each TikTok profile, this scraper collects profile details such as:

- **Identity**: Username, display name, profile picture, bio, and external link
- **Statistics**: Followers, following, total likes, videos, and mutual follows (friends)
- **Account details**: Verification badge, private/public status, business category, organization flag, TikTok Shop seller status
- **Settings**: Language, favorites visibility
- **Timestamps**: Account creation date, data collection time
- **Region**: Account region code when available

### How to use

1. **Add usernames** — Enter TikTok usernames (e.g., `bellapoarch`) or full profile URLs
2. **Run the scraper** — Click "Start" and wait for results
3. **Download data** — Export as JSON, CSV, Excel, or use the API

#### Supported input formats

You can enter profiles in any of these formats:

| Format | Example |
|--------|---------|
| Username | `bellapoarch` |
| With @ symbol | `@bellapoarch` |
| Full URL | `https://www.tiktok.com/@bellapoarch` |
Duplicate usernames are automatically detected and removed.

### Input

| Field | Type | Description |
|-------|------|-------------|
| `usernames` | Array of strings | TikTok usernames or profile URLs to scrape (max 1,000) |

### Output example

The values below are an illustrative sample to show the output structure.

Each profile produces one record with profile fields and status fields:

```json
{
  "userId": "107955",
  "uniqueId": "tiktok",
  "nickname": "TikTok",
  "profileUrl": "https://www.tiktok.com/@tiktok",
  "avatarUrl": "https://p16-sign-va.tiktokcdn.com/...",
  "bio": "One TikTok can make a big impact",
  "bioLink": "linktr.ee/tiktok",
  "isVerified": true,
  "isPrivateAccount": false,
  "isBusinessAccount": true,
  "businessCategory": "Media & Entertainment",
  "isOrganization": true,
  "ttSeller": false,
  "followerCount": 93101075,
  "followingCount": 6,
  "heartCount": 454866331,
  "videoCount": 1400,
  "friendCount": 4,
  "language": "en",
  "openFavorite": false,
  "region": null,
  "accountCreatedAt": "2015-02-28T17:22:29.000Z",
  "collectedAt": "2026-03-02T12:00:00.000Z",
  "inputUrl": "tiktok",
  "error": null,
  "errorType": null
}
````

If an input cannot be processed (e.g., the username doesn't exist), the result includes an error message:

```json
{
  "userId": null,
  "uniqueId": null,
  "nickname": null,
  "followerCount": 0,
  "collectedAt": "2026-03-02T12:00:00.000Z",
  "inputUrl": "nonexistent_user_xyz",
  "error": "User \"nonexistent_user_xyz\" does not exist or has been banned",
  "errorType": "USER_NOT_FOUND"
}
```

### Use cases

- **Influencer research** — Compare follower counts, engagement, mutual follows, and account age across creators
- **Brand monitoring** — Track competitor or partner TikTok presence over time
- **Lead generation** — Build lists of business accounts and TikTok Shop sellers
- **Market analysis** — Analyze account statistics across regions, languages, and niches
- **Account verification** — Check account creation dates, organization status, and verification badges

### Limitations

- **Public profiles only** — Private accounts return limited data (follower/following counts may still be visible)
- **No video data** — This scraper focuses on profile metadata. Use our TikTok Video Scraper for video content
- **Invalid inputs are included in results** — If a username does not exist, is misspelled, or cannot be processed, it will appear in your results with an error message. Please verify your input list before running

### FAQ

**Can I scrape private accounts?**
Partially. Private accounts still expose some public data like follower count, bio, and verification status. The `isPrivateAccount` field will be set to `true`.

**How many profiles can I scrape?**
Up to 1,000 profiles per run. Larger batches may take longer to complete.

**Why is a profile returning an error?**
The most common reasons are: the username doesn't exist (typo), the account was deleted, or TikTok temporarily blocked the request. Failed inputs are still included in your results with an error message — please double-check your input list for accuracy before running the scraper.

**What's the difference between followers, friends, and following?**
`followerCount` is accounts following this user. `followingCount` is accounts this user follows. `friendCount` is mutual follows — accounts where both sides follow each other.

**What is the account creation date?**
`accountCreatedAt` shows when the TikTok account was first created, in ISO 8601 format. This is useful for verifying account age and authenticity.

**What export formats are available?**
JSON, CSV, Excel, HTML, XML, and RSS. You can also access results programmatically via the Apify API.

**Can I schedule regular scraping?**
Yes. Use Apify's built-in scheduler to run this scraper on any schedule — hourly, daily, weekly, or with a custom cron expression.

**Can I integrate this into my workflow?**
Yes. Apify provides a REST API, webhooks, and integrations with tools like Zapier, Make (Integromat), Google Sheets, and Slack.

### Disclaimer

This tool accesses only publicly available TikTok profile data. It does not bypass any login, authentication, or access control mechanisms. Use responsibly and in compliance with applicable laws and TikTok's Terms of Service.

This scraper does not collect private messages, passwords, email addresses, or any data that requires authentication. Private accounts return only the limited information that TikTok makes publicly visible.

The developer is not affiliated with or endorsed by TikTok or ByteDance.

***

*Claude Code | Gemini | ChatGPT | Codex | OpenClaw | Antigravity*

# Actor input Schema

## `usernames` (type: `array`):

List of TikTok usernames (e.g., bellapoarch) or profile URLs (e.g., https://www.tiktok.com/@bellapoarch). Enter one per line.

## Actor input object example

```json
{
  "usernames": [
    "bellapoarch",
    "tiktok"
  ]
}
```

# Actor output Schema

## `profiles` (type: `string`):

No description

# API

You can run this Actor programmatically using our API. Below are code examples in JavaScript, Python, and CLI, as well as the OpenAPI specification and MCP server setup.

## JavaScript example

```javascript
import { ApifyClient } from 'apify-client';

// Initialize the ApifyClient with your Apify API token
// Replace the '<YOUR_API_TOKEN>' with your token
const client = new ApifyClient({
    token: '<YOUR_API_TOKEN>',
});

// Prepare Actor input
const input = {
    "usernames": [
        "bellapoarch",
        "tiktok"
    ]
};

// Run the Actor and wait for it to finish
const run = await client.actor("futurizerush/tiktok-profile-scraper").call(input);

// Fetch and print Actor results from the run's dataset (if any)
console.log('Results from dataset');
console.log(`💾 Check your data here: https://console.apify.com/storage/datasets/${run.defaultDatasetId}`);
const { items } = await client.dataset(run.defaultDatasetId).listItems();
items.forEach((item) => {
    console.dir(item);
});

// 📚 Want to learn more 📖? Go to → https://docs.apify.com/api/client/js/docs

```

## Python example

```python
from apify_client import ApifyClient

# Initialize the ApifyClient with your Apify API token
# Replace '<YOUR_API_TOKEN>' with your token.
client = ApifyClient("<YOUR_API_TOKEN>")

# Prepare the Actor input
run_input = { "usernames": [
        "bellapoarch",
        "tiktok",
    ] }

# Run the Actor and wait for it to finish
run = client.actor("futurizerush/tiktok-profile-scraper").call(run_input=run_input)

# Fetch and print Actor results from the run's dataset (if there are any)
print("💾 Check your data here: https://console.apify.com/storage/datasets/" + run["defaultDatasetId"])
for item in client.dataset(run["defaultDatasetId"]).iterate_items():
    print(item)

# 📚 Want to learn more 📖? Go to → https://docs.apify.com/api/client/python/docs/quick-start

```

## CLI example

```bash
echo '{
  "usernames": [
    "bellapoarch",
    "tiktok"
  ]
}' |
apify call futurizerush/tiktok-profile-scraper --silent --output-dataset

```

## MCP server setup

```json
{
    "mcpServers": {
        "apify": {
            "command": "npx",
            "args": [
                "mcp-remote",
                "https://mcp.apify.com/?tools=futurizerush/tiktok-profile-scraper",
                "--header",
                "Authorization: Bearer <YOUR_API_TOKEN>"
            ]
        }
    }
}

```

## OpenAPI specification

```json
{
    "openapi": "3.0.1",
    "info": {
        "title": "Tiktok Profile Scraper",
        "description": "TikTok Profile Scraper — Extract 24 data points from any public TikTok profile including followers, likes, bio, business info, and account age. No login required.",
        "version": "0.0",
        "x-build-id": "TeJwKrq8dHmEmOgiL"
    },
    "servers": [
        {
            "url": "https://api.apify.com/v2"
        }
    ],
    "paths": {
        "/acts/futurizerush~tiktok-profile-scraper/run-sync-get-dataset-items": {
            "post": {
                "operationId": "run-sync-get-dataset-items-futurizerush-tiktok-profile-scraper",
                "x-openai-isConsequential": false,
                "summary": "Executes an Actor, waits for its completion, and returns Actor's dataset items in response.",
                "tags": [
                    "Run Actor"
                ],
                "requestBody": {
                    "required": true,
                    "content": {
                        "application/json": {
                            "schema": {
                                "$ref": "#/components/schemas/inputSchema"
                            }
                        }
                    }
                },
                "parameters": [
                    {
                        "name": "token",
                        "in": "query",
                        "required": true,
                        "schema": {
                            "type": "string"
                        },
                        "description": "Enter your Apify token here"
                    }
                ],
                "responses": {
                    "200": {
                        "description": "OK"
                    }
                }
            }
        },
        "/acts/futurizerush~tiktok-profile-scraper/runs": {
            "post": {
                "operationId": "runs-sync-futurizerush-tiktok-profile-scraper",
                "x-openai-isConsequential": false,
                "summary": "Executes an Actor and returns information about the initiated run in response.",
                "tags": [
                    "Run Actor"
                ],
                "requestBody": {
                    "required": true,
                    "content": {
                        "application/json": {
                            "schema": {
                                "$ref": "#/components/schemas/inputSchema"
                            }
                        }
                    }
                },
                "parameters": [
                    {
                        "name": "token",
                        "in": "query",
                        "required": true,
                        "schema": {
                            "type": "string"
                        },
                        "description": "Enter your Apify token here"
                    }
                ],
                "responses": {
                    "200": {
                        "description": "OK",
                        "content": {
                            "application/json": {
                                "schema": {
                                    "$ref": "#/components/schemas/runsResponseSchema"
                                }
                            }
                        }
                    }
                }
            }
        },
        "/acts/futurizerush~tiktok-profile-scraper/run-sync": {
            "post": {
                "operationId": "run-sync-futurizerush-tiktok-profile-scraper",
                "x-openai-isConsequential": false,
                "summary": "Executes an Actor, waits for completion, and returns the OUTPUT from Key-value store in response.",
                "tags": [
                    "Run Actor"
                ],
                "requestBody": {
                    "required": true,
                    "content": {
                        "application/json": {
                            "schema": {
                                "$ref": "#/components/schemas/inputSchema"
                            }
                        }
                    }
                },
                "parameters": [
                    {
                        "name": "token",
                        "in": "query",
                        "required": true,
                        "schema": {
                            "type": "string"
                        },
                        "description": "Enter your Apify token here"
                    }
                ],
                "responses": {
                    "200": {
                        "description": "OK"
                    }
                }
            }
        }
    },
    "components": {
        "schemas": {
            "inputSchema": {
                "type": "object",
                "required": [
                    "usernames"
                ],
                "properties": {
                    "usernames": {
                        "title": "👤 TikTok Usernames or URLs",
                        "minItems": 1,
                        "maxItems": 1000,
                        "uniqueItems": true,
                        "type": "array",
                        "description": "List of TikTok usernames (e.g., bellapoarch) or profile URLs (e.g., https://www.tiktok.com/@bellapoarch). Enter one per line.",
                        "items": {
                            "type": "string"
                        }
                    }
                }
            },
            "runsResponseSchema": {
                "type": "object",
                "properties": {
                    "data": {
                        "type": "object",
                        "properties": {
                            "id": {
                                "type": "string"
                            },
                            "actId": {
                                "type": "string"
                            },
                            "userId": {
                                "type": "string"
                            },
                            "startedAt": {
                                "type": "string",
                                "format": "date-time",
                                "example": "2025-01-08T00:00:00.000Z"
                            },
                            "finishedAt": {
                                "type": "string",
                                "format": "date-time",
                                "example": "2025-01-08T00:00:00.000Z"
                            },
                            "status": {
                                "type": "string",
                                "example": "READY"
                            },
                            "meta": {
                                "type": "object",
                                "properties": {
                                    "origin": {
                                        "type": "string",
                                        "example": "API"
                                    },
                                    "userAgent": {
                                        "type": "string"
                                    }
                                }
                            },
                            "stats": {
                                "type": "object",
                                "properties": {
                                    "inputBodyLen": {
                                        "type": "integer",
                                        "example": 2000
                                    },
                                    "rebootCount": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "restartCount": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "resurrectCount": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "computeUnits": {
                                        "type": "integer",
                                        "example": 0
                                    }
                                }
                            },
                            "options": {
                                "type": "object",
                                "properties": {
                                    "build": {
                                        "type": "string",
                                        "example": "latest"
                                    },
                                    "timeoutSecs": {
                                        "type": "integer",
                                        "example": 300
                                    },
                                    "memoryMbytes": {
                                        "type": "integer",
                                        "example": 1024
                                    },
                                    "diskMbytes": {
                                        "type": "integer",
                                        "example": 2048
                                    }
                                }
                            },
                            "buildId": {
                                "type": "string"
                            },
                            "defaultKeyValueStoreId": {
                                "type": "string"
                            },
                            "defaultDatasetId": {
                                "type": "string"
                            },
                            "defaultRequestQueueId": {
                                "type": "string"
                            },
                            "buildNumber": {
                                "type": "string",
                                "example": "1.0.0"
                            },
                            "containerUrl": {
                                "type": "string"
                            },
                            "usage": {
                                "type": "object",
                                "properties": {
                                    "ACTOR_COMPUTE_UNITS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATASET_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATASET_WRITES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "KEY_VALUE_STORE_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "KEY_VALUE_STORE_WRITES": {
                                        "type": "integer",
                                        "example": 1
                                    },
                                    "KEY_VALUE_STORE_LISTS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "REQUEST_QUEUE_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "REQUEST_QUEUE_WRITES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATA_TRANSFER_INTERNAL_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATA_TRANSFER_EXTERNAL_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "PROXY_RESIDENTIAL_TRANSFER_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "PROXY_SERPS": {
                                        "type": "integer",
                                        "example": 0
                                    }
                                }
                            },
                            "usageTotalUsd": {
                                "type": "number",
                                "example": 0.00005
                            },
                            "usageUsd": {
                                "type": "object",
                                "properties": {
                                    "ACTOR_COMPUTE_UNITS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATASET_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATASET_WRITES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "KEY_VALUE_STORE_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "KEY_VALUE_STORE_WRITES": {
                                        "type": "number",
                                        "example": 0.00005
                                    },
                                    "KEY_VALUE_STORE_LISTS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "REQUEST_QUEUE_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "REQUEST_QUEUE_WRITES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATA_TRANSFER_INTERNAL_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATA_TRANSFER_EXTERNAL_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "PROXY_RESIDENTIAL_TRANSFER_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "PROXY_SERPS": {
                                        "type": "integer",
                                        "example": 0
                                    }
                                }
                            }
                        }
                    }
                }
            }
        }
    }
}
```
