# Scrape Tech Journalist Tweets for PR Outreach

**Use case:** 

Extract recent tweets and engagement data from key tech journalists and media personalities. This helps PR teams tailor pitches and understand current interests

## Input

```json
{
  "usernames": [
    "@karaswisher",
    "@waltmossberg",
    "@jason",
    "@sarahfrier"
  ],
  "maxTweets": 75,
  "includeReplies": true,
  "includeRetweets": true,
  "cookies": "***",
  "proxyConfiguration": {
    "useApifyProxy": true
  }
}
```

## 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.