# Track Douyin Follower Growth

**Use case:** 

Export live Douyin profile metrics without scraping posts. Track follower counts, total likes, video totals, verification, bios, and creator URLs over time.

## Input

```json
{
  "profileUrls": [
    "1929015166249580"
  ],
  "maxPostsPerProfile": 0,
  "excludePinnedPosts": false
}
```

## Output

```json
{
  "id": {
    "label": "User ID",
    "format": "text"
  },
  "secUid": {
    "label": "Sec User ID",
    "format": "text"
  },
  "name": {
    "label": "Display name",
    "format": "text"
  },
  "username": {
    "label": "Username",
    "format": "text"
  },
  "customUsername": {
    "label": "Custom username",
    "format": "text"
  },
  "verified": {
    "label": "Verified",
    "format": "boolean"
  },
  "verificationReason": {
    "label": "Verification reason",
    "format": "text"
  },
  "signature": {
    "label": "Bio",
    "format": "text"
  },
  "avatarThumb": {
    "label": "Avatar (small)",
    "format": "image"
  },
  "avatarLarge": {
    "label": "Avatar (large)",
    "format": "image"
  },
  "bgImage": {
    "label": "Background image",
    "format": "image"
  },
  "followingCount": {
    "label": "Following",
    "format": "number"
  },
  "followersCount": {
    "label": "Followers",
    "format": "number"
  },
  "followersCountStr": {
    "label": "Followers (display)",
    "format": "text"
  },
  "heartCount": {
    "label": "Total likes",
    "format": "number"
  },
  "videoCount": {
    "label": "Videos",
    "format": "number"
  },
  "videoPlayCount": {
    "label": "Total plays",
    "format": "number"
  },
  "videoShareCount": {
    "label": "Total shares",
    "format": "number"
  },
  "isLiving": {
    "label": "Live now",
    "format": "boolean"
  },
  "ipLocation": {
    "label": "Region",
    "format": "text"
  },
  "country": {
    "label": "Country",
    "format": "text"
  },
  "usesSeries": {
    "label": "Uses 合集",
    "format": "boolean"
  },
  "shareUrl": {
    "label": "Share URL",
    "format": "link"
  },
  "mcnInfo": {
    "label": "MCN",
    "format": "object"
  },
  "totalLikesReceived": {
    "label": "Lifetime likes",
    "format": "number"
  },
  "awemeCount": {
    "label": "Posts (true total)",
    "format": "number"
  },
  "likesGivenCount": {
    "label": "Likes given",
    "format": "number"
  },
  "verifyType": {
    "label": "Verify type",
    "format": "number"
  },
  "customVerifyText": {
    "label": "Badge label",
    "format": "text"
  },
  "enterpriseVerifyReason": {
    "label": "Enterprise verify reason",
    "format": "text"
  },
  "customUsernameUpdatedAt": {
    "label": "Username updated (unix)",
    "format": "number"
  },
  "shareQrCodeUri": {
    "label": "Share QR URI",
    "format": "text"
  },
  "avatar168": {
    "label": "Avatar 168",
    "format": "image"
  },
  "avatarMedium": {
    "label": "Avatar 720",
    "format": "image"
  },
  "avatar300": {
    "label": "Avatar 300",
    "format": "image"
  },
  "gender": {
    "label": "Gender",
    "format": "text"
  },
  "language": {
    "label": "Language",
    "format": "text"
  },
  "userAge": {
    "label": "User age",
    "format": "number"
  },
  "birthday": {
    "label": "Birthday",
    "format": "text"
  },
  "constellation": {
    "label": "Constellation",
    "format": "number"
  },
  "school": {
    "label": "School",
    "format": "object"
  },
  "roomId": {
    "label": "Live room",
    "format": "text"
  },
  "isStar": {
    "label": "Star creator",
    "format": "boolean"
  },
  "withShopEntry": {
    "label": "Has shop",
    "format": "boolean"
  },
  "commerceUserLevel": {
    "label": "Commerce tier",
    "format": "number"
  },
  "crossPlatform": {
    "label": "Cross-platform",
    "format": "object"
  },
  "profileUrl": {
    "label": "Profile URL",
    "format": "link"
  },
  "inputUrl": {
    "label": "Input",
    "format": "text"
  }
}
```

## About this Actor

This example demonstrates how to use [Douyin 抖音 Profile Scraper - 博主 Followers, Posts & Hashtags](https://apify.com/zen-studio/douyin-profile-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/zen-studio/douyin-profile-scraper) 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/zen-studio/douyin-profile-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).
