# Twitter Profile Data Extractor

**Use case:** 

Scrape public Twitter/X profile data for usernames, including bios, follower counts, verification, websites, and profile URLs.

## Input

```json
{
  "mode": "profiles",
  "usernames": [
    "apify",
    "elonmusk"
  ],
  "tweetUrls": [
    "https://x.com/elonmusk/status/1893749736647471554"
  ],
  "searchTerms": [
    "apify web scraping"
  ],
  "searchMode": "Top",
  "maxResults": 10,
  "twitterCookie": "***"
}
```

## Output

```json
{
  "profilePicture": {
    "label": "Profile Picture",
    "format": "string"
  },
  "username": {
    "label": "Username",
    "format": "string"
  },
  "name": {
    "label": "Name",
    "format": "string"
  },
  "bio": {
    "label": "Bio",
    "format": "string"
  },
  "followers": {
    "label": "Followers",
    "format": "number"
  },
  "following": {
    "label": "Following",
    "format": "number"
  },
  "tweetsCount": {
    "label": "Tweets Count",
    "format": "number"
  },
  "isBlueVerified": {
    "label": "Is Blue Verified",
    "format": "boolean"
  },
  "joinedAt": {
    "label": "Joined At",
    "format": "string"
  },
  "url": {
    "label": "Url",
    "format": "string"
  }
}
```

## About this Actor

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