# CEO Tweet Engagement Data Extractor

**Use case:** 

Extract engagement metrics for CEO tweets by URL. Get data on likes, retweets, replies, and more from specific tweet posts.

## Input

```json
{
  "postUrls": [
    "https://x.com/elonmusk/status/1719645614015484162",
    "https://x.com/satyanadella/status/1728455267424419947"
  ],
  "maxConcurrency": 5,
  "maxResults": 0,
  "proxyConfiguration": {
    "useApifyProxy": true,
    "apifyProxyGroups": [
      "RESIDENTIAL"
    ]
  }
}
```

## Output

```json
{
  "text": {
    "label": "Text",
    "format": "text"
  },
  "likeCount": {
    "label": "Likes",
    "format": "number"
  },
  "retweetCount": {
    "label": "Retweets",
    "format": "number"
  },
  "replyCount": {
    "label": "Replies",
    "format": "number"
  },
  "viewCount": {
    "label": "Views",
    "format": "number"
  },
  "createdAt": {
    "label": "Created at",
    "format": "text"
  },
  "url": {
    "label": "Post URL",
    "format": "link"
  }
}
```

## About this Actor

This example demonstrates how to use [Tweet Scraper by URL - X (Twitter) Post Data](https://apify.com/logiover/x-post-url-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/logiover/x-post-url-scraper) to learn more, explore other use cases, and run it yourself.