# TikTok: only verified accounts

**Use case:** 

One row per account: the exact follower count TikTok stores, the rounded number the app shows, and the gap between them, plus following, likes, videos, verification and the bio link. Only the accounts carrying a verification badge are returned; the rest are filtered out rather than flagged.

## Input

```json
{
  "usernames": [
    "@khaby.lame",
    "@charlidamelio",
    "@mrbeast",
    "@tiktok",
    "@bts_official_bighit",
    "@espn",
    "@netflix",
    "@duolingo",
    "@zara",
    "@louisvuitton",
    "@whitehouse",
    "@canva",
    "@adobe",
    "@visa",
    "@ikea",
    "@heineken",
    "@udemy",
    "@coinbase"
  ],
  "maxProfiles": 100,
  "monitoringMode": false,
  "monitorMode": "any-change",
  "resetMonitoringState": false,
  "minFollowers": 0,
  "maxFollowers": 0,
  "onlyVerified": true,
  "onlyWithBioLink": false,
  "excludePrivate": false,
  "keywords": [],
  "keywordMatch": "any",
  "excludeKeywords": [],
  "useProxy": true
}
```

## Output

```json
{
  "username": {
    "label": "Username",
    "format": "string"
  },
  "followerCount": {
    "label": "Follower Count",
    "format": "string"
  },
  "followerDelta": {
    "label": "Follower Delta",
    "format": "string"
  },
  "followerCountDisplay": {
    "label": "Follower Count Display",
    "format": "string"
  },
  "videoCount": {
    "label": "Video Count",
    "format": "string"
  },
  "likeCount": {
    "label": "Like Count",
    "format": "string"
  },
  "source": {
    "label": "Source",
    "format": "string"
  },
  "status": {
    "label": "Status",
    "format": "string"
  },
  "scrapedAt": {
    "label": "Scraped At",
    "format": "string"
  },
  "inputUsername": {
    "label": "Input Username",
    "format": "string"
  },
  "usernameMatchesInput": {
    "label": "Username Matches Input",
    "format": "string"
  },
  "userId": {
    "label": "User Id",
    "format": "string"
  },
  "secUid": {
    "label": "Sec Uid",
    "format": "string"
  },
  "profileUrl": {
    "label": "Profile Url",
    "format": "string"
  },
  "nickname": {
    "label": "Nickname",
    "format": "string"
  },
  "signature": {
    "label": "Signature",
    "format": "string"
  },
  "bioLink": {
    "label": "Bio Link",
    "format": "string"
  },
  "followingCount": {
    "label": "Following Count",
    "format": "string"
  },
  "friendCount": {
    "label": "Friend Count",
    "format": "string"
  },
  "likeCountDisplay": {
    "label": "Like Count Display",
    "format": "string"
  },
  "displayIsRounded": {
    "label": "Display Is Rounded",
    "format": "string"
  },
  "followerCountDisplayDiff": {
    "label": "Follower Count Display Diff",
    "format": "string"
  },
  "verified": {
    "label": "Verified",
    "format": "string"
  },
  "privateAccount": {
    "label": "Private Account",
    "format": "string"
  },
  "isOrganizationCode": {
    "label": "Is Organization Code",
    "format": "string"
  },
  "isOrganization": {
    "label": "Is Organization",
    "format": "string"
  },
  "ttSeller": {
    "label": "Tt Seller",
    "format": "string"
  },
  "language": {
    "label": "Language",
    "format": "string"
  },
  "avatarUrl": {
    "label": "Avatar Url",
    "format": "string"
  },
  "createdAtEpoch": {
    "label": "Created At Epoch",
    "format": "string"
  },
  "createdAt": {
    "label": "Created At",
    "format": "string"
  },
  "isFirstCheck": {
    "label": "Is First Check",
    "format": "string"
  },
  "previousCheckedAt": {
    "label": "Previous Checked At",
    "format": "string"
  },
  "previousFollowerCount": {
    "label": "Previous Follower Count",
    "format": "string"
  },
  "changedFields": {
    "label": "Changed Fields",
    "format": "string"
  },
  "searchUrl": {
    "label": "Search Url",
    "format": "string"
  },
  "note": {
    "label": "Note",
    "format": "string"
  },
  "tiktokStatusCode": {
    "label": "Tiktok Status Code",
    "format": "string"
  }
}
```

## About this Actor

This example demonstrates how to use [TikTok Follower Count Scraper & Monitor - Exact, Not Rounded](https://apify.com/neverempty/tiktok-follower-count-scraper.md) with a specific input configuration. Visit the [Actor detail page](https://apify.com/neverempty/tiktok-follower-count-scraper.md) to learn more, explore other use cases, and run it yourself.


## 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.
This Task's input is already configured above — use it as-is rather than inventing a new one.

- **AI agents and MCP clients** — the [Apify MCP server](https://docs.apify.com/integrations/mcp.md) at `https://mcp.apify.com` (remote, streamable HTTP, OAuth on first use).
- **Agentic workflows and local Actor development** — [Agent Skills](https://apify.com/.well-known/agent-skills/index.json) with the [Apify CLI](https://docs.apify.com/cli/docs.md): `npm install -g apify-cli`, then `apify login`.
- **JavaScript/TypeScript projects** — the official [JS/TS client](https://docs.apify.com/api/client/js/docs.md): `npm install apify-client`.
- **Python projects** — the official [Python client](https://docs.apify.com/api/client/python/docs.md): `pip install apify-client`.
- **Any other language** — the [REST API](https://docs.apify.com/api/v2.md).

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

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