# X Twitter Brand Profile Stats Scraper

**Use case:** 

Scrape X (Twitter) profile stats for a set of brands. Get follower counts, bios, verification and tweet counts for competitive benchmarking.

## Input

```json
{
  "mode": "userProfile",
  "handles": [
    "nike",
    "spacex",
    "tesla",
    "google",
    "apple",
    "microsoft"
  ],
  "tweetsLimit": 100,
  "includeReplies": false,
  "tweetIds": [
    "https://x.com/BarackObama/status/266031293945503744"
  ],
  "searchType": "Top",
  "maxItems": 6,
  "lang": "en",
  "proxyConfiguration": {
    "useApifyProxy": true,
    "apifyProxyGroups": [
      "RESIDENTIAL"
    ],
    "apifyProxyCountry": "US"
  }
}
```

## Output

```json
{
  "handle": {
    "label": "Handle",
    "format": "text"
  },
  "name": {
    "label": "Name",
    "format": "text"
  },
  "bio": {
    "label": "Bio",
    "format": "text"
  },
  "website": {
    "label": "Website",
    "format": "link"
  },
  "followers": {
    "label": "Followers",
    "format": "number"
  },
  "following": {
    "label": "Following",
    "format": "number"
  },
  "tweetsCount": {
    "label": "Tweets",
    "format": "number"
  },
  "mediaCount": {
    "label": "Media",
    "format": "number"
  },
  "listedCount": {
    "label": "Listed",
    "format": "number"
  },
  "verified": {
    "label": "Verified",
    "format": "boolean"
  },
  "location": {
    "label": "Location",
    "format": "text"
  },
  "joinedAt": {
    "label": "Joined",
    "format": "text"
  },
  "pinnedTweetId": {
    "label": "Pinned Tweet ID",
    "format": "text"
  },
  "avatar": {
    "label": "Avatar",
    "format": "image"
  },
  "banner": {
    "label": "Banner",
    "format": "image"
  },
  "url": {
    "label": "URL",
    "format": "link"
  },
  "id": {
    "label": "User ID",
    "format": "text"
  },
  "observedAt": {
    "label": "Scraped",
    "format": "text"
  },
  "error": {
    "label": "Error",
    "format": "text"
  }
}
```

## About this Actor

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