# Analyze a public Twitter/X following list

**Use case:** 

Collect the public following list for an account to study who it follows and what networks it appears connected to.

## Input

```json
{
  "usernames": [
    "elonmusk"
  ],
  "startUrls": [
    {
      "url": "https://x.com/openai/following"
    }
  ],
  "mode": "following",
  "maxFollowersPerUser": 10,
  "maxFollowingPerUser": 15,
  "maxResults": 15,
  "proxyConfiguration": {
    "useApifyProxy": true,
    "apifyProxyGroups": [
      "RESIDENTIAL"
    ]
  }
}
```

## Output

```json
{
  "record_type": {
    "label": "Record Type",
    "format": "string"
  },
  "username": {
    "label": "Username (Handle)",
    "format": "string"
  },
  "display_name": {
    "label": "Display Name",
    "format": "string"
  },
  "follower_count": {
    "label": "Follower Count",
    "format": "number"
  },
  "following_count": {
    "label": "Following Count",
    "format": "number"
  },
  "verified": {
    "label": "Verified (Legacy)",
    "format": "boolean"
  },
  "is_blue_verified": {
    "label": "Blue Verified (X Premium)",
    "format": "boolean"
  },
  "location": {
    "label": "Location",
    "format": "string"
  },
  "bio": {
    "label": "Bio / Description",
    "format": "string"
  },
  "website": {
    "label": "Website URL",
    "format": "string"
  },
  "scraped_at": {
    "label": "Scraped At",
    "format": "string"
  }
}
```

## About this Actor

This example demonstrates how to use [Twitter/X Scraper — Profiles & Followers](https://apify.com/khadinakbar/twitter-profile-followers-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/khadinakbar/twitter-profile-followers-scraper) to learn more, explore other use cases, and run it yourself.