# Elon Musk & Tesla Tweet Analysis

**Use case:** 

Scrape up to 200 tweets each from Elon Musk, Tesla, and SpaceX. Get detailed engagement data without needing an API key.

## Input

```json
{
  "profiles": [
    "elonmusk",
    "Tesla",
    "SpaceX"
  ],
  "maxTweetsPerProfile": 200,
  "includeRetweets": false,
  "includeReplies": false,
  "maxResults": 0,
  "proxyConfiguration": {
    "useApifyProxy": true,
    "apifyProxyGroups": [
      "RESIDENTIAL"
    ]
  }
}
```

## Output

```json
{
  "fromProfile": {
    "label": "From profile",
    "format": "text"
  },
  "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": "Tweet URL",
    "format": "link"
  }
}
```

## About this Actor

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