# Create a public Twitter/X profile dataset

**Use case:** 

Build a compact dataset of public account metadata for analysis, enrichment, or internal research workflows with structured rows.

## Input

```json
{
  "usernames": [
    "elonmusk",
    "sundarpichai",
    "tim_cook"
  ],
  "startUrls": [],
  "mode": "profiles",
  "maxFollowersPerUser": 10,
  "maxFollowingPerUser": 10,
  "maxResults": 20,
  "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.