# X Twitter Brand Profiles Scraper

**Use case:** 

Extract X (Twitter) brand account profiles with followers, bio, verification and recent tweets engagement.

## Input

```json
{
  "handles": [
    "Nike",
    "Tesla"
  ],
  "maxTweetsPerUser": 20,
  "proxyConfiguration": {
    "useApifyProxy": true,
    "apifyProxyGroups": [
      "RESIDENTIAL"
    ]
  }
}
```

## Output

```json
{
  "profileImageUrl": {
    "label": "Avatar",
    "format": "image"
  },
  "username": {
    "label": "Handle",
    "format": "text"
  },
  "displayName": {
    "label": "Name",
    "format": "text"
  },
  "url": {
    "label": "URL",
    "format": "link"
  },
  "userId": {
    "label": "User ID",
    "format": "text"
  },
  "bio": {
    "label": "Bio",
    "format": "text"
  },
  "website": {
    "label": "Website",
    "format": "link"
  },
  "location": {
    "label": "Location",
    "format": "text"
  },
  "isVerified": {
    "label": "Verified",
    "format": "boolean"
  },
  "verifiedType": {
    "label": "Verified Type",
    "format": "text"
  },
  "isProtected": {
    "label": "Protected",
    "format": "boolean"
  },
  "accountCreated": {
    "label": "Joined",
    "format": "text"
  },
  "followerCount": {
    "label": "Followers",
    "format": "number"
  },
  "followingCount": {
    "label": "Following",
    "format": "number"
  },
  "tweetCount": {
    "label": "Tweets",
    "format": "number"
  },
  "mediaCount": {
    "label": "Media",
    "format": "number"
  },
  "listedCount": {
    "label": "Listed",
    "format": "number"
  },
  "favouritesCount": {
    "label": "Likes Given",
    "format": "number"
  },
  "bannerUrl": {
    "label": "Banner",
    "format": "image"
  },
  "numTweetsFetched": {
    "label": "Tweets Fetched",
    "format": "number"
  },
  "recentTweets": {
    "label": "Recent Tweets",
    "format": "array"
  },
  "observedAt": {
    "label": "Scraped",
    "format": "text"
  },
  "error": {
    "label": "Error",
    "format": "text"
  }
}
```

## About this Actor

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