# Identify Key Industry Influencers on Twitter

**Use case:** 

Discover top voices and influential profiles within your industry by analyzing their tweet activity and engagement metrics. This data is crucial for influencer 

## Input

```json
{
  "usernames": [
    "@elonmusk",
    "@tim_cook",
    "@satyanadella",
    "@sundarpichai"
  ],
  "maxTweets": 50,
  "includeReplies": false,
  "includeRetweets": false,
  "cookies": "***"
}
```

## Output

```json
{
  "scrapedProfile": {
    "label": "Profile",
    "format": "text"
  },
  "text": {
    "label": "Tweet Text",
    "format": "text"
  },
  "timestamp": {
    "label": "Posted At",
    "format": "date"
  },
  "likes_count": {
    "label": "Likes",
    "format": "number"
  },
  "retweets_count": {
    "label": "Retweets",
    "format": "number"
  },
  "replies_count": {
    "label": "Replies",
    "format": "number"
  },
  "bookmarks_count": {
    "label": "Bookmarks",
    "format": "number"
  },
  "views_count": {
    "label": "Views",
    "format": "number"
  },
  "is_retweet": {
    "label": "Retweet?",
    "format": "text"
  },
  "is_reply": {
    "label": "Reply?",
    "format": "text"
  },
  "tweet_url": {
    "label": "URL",
    "format": "link"
  }
}
```

## About this Actor

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