# Twitter List Follower Scraper

**Use case:** 

Use Twitter List Follower Scraper to collect from public X/Twitter list 84839422. Keep verified profiles and stop after 50 matching profiles. The dataset overview shows public profile and source-list fields.

## Input

```json
{
  "listSources": [
    "84839422"
  ],
  "maxItems": 50,
  "verificationState": "verified"
}
```

## Output

```json
{
  "userId": {
    "label": "User ID",
    "format": "string"
  },
  "username": {
    "label": "Username",
    "format": "string"
  },
  "displayName": {
    "label": "Display name",
    "format": "string"
  },
  "bio": {
    "label": "Bio",
    "format": "string"
  },
  "location": {
    "label": "Location",
    "format": "string"
  },
  "website": {
    "label": "Website",
    "format": "string"
  },
  "profileImageUrl": {
    "label": "Profile image URL",
    "format": "string"
  },
  "createdAt": {
    "label": "Account created",
    "format": "string"
  },
  "followersCount": {
    "label": "Followers",
    "format": "integer"
  },
  "followingCount": {
    "label": "Following",
    "format": "integer"
  },
  "postCount": {
    "label": "Posts",
    "format": "integer"
  },
  "mediaCount": {
    "label": "Media posts",
    "format": "integer"
  },
  "likesCount": {
    "label": "Likes",
    "format": "integer"
  },
  "verificationState": {
    "label": "Verification state",
    "format": "string"
  },
  "verificationType": {
    "label": "Verification type",
    "format": "string"
  },
  "bannerImageUrl": {
    "label": "Banner image URL",
    "format": "string"
  },
  "pinnedPostIds": {
    "label": "Pinned post IDs",
    "format": "array"
  },
  "professionalType": {
    "label": "Professional type",
    "format": "string"
  },
  "profileLanguage": {
    "label": "Profile language",
    "format": "string"
  },
  "affiliateLabel": {
    "label": "Affiliate label",
    "format": "string"
  },
  "listId": {
    "label": "List ID",
    "format": "string"
  },
  "listUrl": {
    "label": "List URL",
    "format": "string"
  },
  "relationship": {
    "label": "List relationship",
    "format": "string"
  }
}
```

## About this Actor

This example demonstrates how to use [Twitter List Followers Scraper](https://apify.com/maximedupre/twitter-list-followers-scraper.md) with a specific input configuration. Visit the [Actor detail page](https://apify.com/maximedupre/twitter-list-followers-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/maximedupre/twitter-list-followers-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`).
