# Bulk Threads Follower Count Checker

**Use case:** 

Paste a list of Threads usernames and get follower counts, display names, bios, verification status and recent post engagement for all of them in one run. Built for influencer research, competitor tracking and lead qualification. No login or Threads account needed — results export to CSV, JSON or Excel, and runs can be scheduled to track follower growth over time

## Input

```json
{
  "mode": "profile",
  "usernames": [
    "zuck",
    "mosseri"
  ],
  "searchQueries": [
    "digital marketing"
  ],
  "hashtags": [
    "ai",
    "startup"
  ],
  "searchSort": "top",
  "minLikes": 0,
  "minTextLength": 0,
  "excludeSpam": false,
  "includePosts": true,
  "maxPostsPerProfile": 25,
  "maxResultsPerQuery": 50,
  "proxyConfiguration": {
    "useApifyProxy": false
  }
}
```

## Output

```json
{
  "username": {
    "label": "Username",
    "format": "text"
  },
  "author": {
    "label": "Author",
    "format": "text"
  },
  "text": {
    "label": "Post",
    "format": "text"
  },
  "likeCount": {
    "label": "Likes",
    "format": "number"
  },
  "replyCount": {
    "label": "Replies",
    "format": "number"
  },
  "followerCount": {
    "label": "Followers",
    "format": "number"
  },
  "isVerified": {
    "label": "Verified",
    "format": "boolean"
  },
  "biography": {
    "label": "Bio",
    "format": "text"
  },
  "bioLinks": {
    "label": "Bio links",
    "format": "array"
  },
  "postsScraped": {
    "label": "Posts",
    "format": "number"
  },
  "url": {
    "label": "Post link",
    "format": "link"
  },
  "profileUrl": {
    "label": "Profile",
    "format": "link"
  },
  "searchQuery": {
    "label": "Query",
    "format": "text"
  },
  "hashtag": {
    "label": "Hashtag",
    "format": "text"
  },
  "sourcePostUrl": {
    "label": "Source post",
    "format": "link"
  },
  "postedAt": {
    "label": "Posted",
    "format": "date"
  }
}
```

## About this Actor

This example demonstrates how to use [Threads Scraper - Profiles, Search, Hashtags & Posts](https://apify.com/abdullahbilal-y/threads-profile-scraper.md) with a specific input configuration. Visit the [Actor detail page](https://apify.com/abdullahbilal-y/threads-profile-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/abdullahbilal-y/threads-profile-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`).
