# Kwai follower count: Flamengo, Santos, Gremio, Cruzeiro

**Use case:** 

Follower counts of Brazilian football clubs on Kwai, one row per official account: followers, following, likes received, number of videos, verified flag, Kwai's category, name and bio. Accounts: Flamengo, Santos FC, Gremio and Cruzeiro. The counts are the whole numbers Kwai stores, not the rounded figures shown in the app. Export as JSON, CSV or Excel.

## Input

```json
{
  "usernames": [
    "@flamengo",
    "@santosfc",
    "@gremio",
    "@cruzeiro"
  ],
  "maxResults": 10,
  "monitoringMode": false,
  "minFollowerChange": 1,
  "resetMonitoringState": false,
  "useProxy": true
}
```

## Output

```json
{
  "profileUrl": {
    "label": "Profile Url",
    "format": "string"
  },
  "displayName": {
    "label": "Display Name",
    "format": "string"
  },
  "followerCount": {
    "label": "Follower Count",
    "format": "string"
  },
  "followingCount": {
    "label": "Following Count",
    "format": "string"
  },
  "likesReceivedCount": {
    "label": "Likes Received Count",
    "format": "string"
  },
  "videoCount": {
    "label": "Video Count",
    "format": "string"
  },
  "isVerified": {
    "label": "Is Verified",
    "format": "string"
  },
  "change": {
    "label": "Change",
    "format": "string"
  },
  "followerCountDelta": {
    "label": "Follower Count Delta",
    "format": "string"
  },
  "followersPerHour": {
    "label": "Followers Per Hour",
    "format": "string"
  },
  "status": {
    "label": "Status",
    "format": "string"
  },
  "note": {
    "label": "Note",
    "format": "string"
  },
  "source": {
    "label": "Source",
    "format": "string"
  },
  "inputUsername": {
    "label": "Input Username",
    "format": "string"
  },
  "username": {
    "label": "Username",
    "format": "string"
  },
  "requestUrl": {
    "label": "Request Url",
    "format": "string"
  },
  "followerCountShown": {
    "label": "Follower Count Shown",
    "format": "string"
  },
  "likeCountShown": {
    "label": "Like Count Shown",
    "format": "string"
  },
  "scrapedAt": {
    "label": "Scraped At",
    "format": "string"
  },
  "usernameMatchesInput": {
    "label": "Username Matches Input",
    "format": "string"
  },
  "userId": {
    "label": "User Id",
    "format": "string"
  },
  "encryptedUserId": {
    "label": "Encrypted User Id",
    "format": "string"
  },
  "bio": {
    "label": "Bio",
    "format": "string"
  },
  "avatarUrl": {
    "label": "Avatar Url",
    "format": "string"
  },
  "creatorLevel": {
    "label": "Creator Level",
    "format": "string"
  },
  "category": {
    "label": "Category",
    "format": "string"
  },
  "publicVideoCount": {
    "label": "Public Video Count",
    "format": "string"
  },
  "isFirstCheck": {
    "label": "Is First Check",
    "format": "string"
  },
  "previousCheckedAt": {
    "label": "Previous Checked At",
    "format": "string"
  },
  "previousCountReadAt": {
    "label": "Previous Count Read At",
    "format": "string"
  },
  "previousFollowerCount": {
    "label": "Previous Follower Count",
    "format": "string"
  },
  "previousUsername": {
    "label": "Previous Username",
    "format": "string"
  },
  "hoursSincePreviousCount": {
    "label": "Hours Since Previous Count",
    "format": "string"
  }
}
```

## About this Actor

This example demonstrates how to use [Kwai Follower Count Scraper & Monitor - Profile Stats](https://apify.com/neverempty/kwai-follower-count-scraper.md) with a specific input configuration. Visit the [Actor detail page](https://apify.com/neverempty/kwai-follower-count-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/neverempty/kwai-follower-count-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`).
