# Sports Teams Tweet Analysis Data

**Use case:** 

Analyze tweets from major sports teams like the Lakers and Yankees. Extract engagement metrics including likes and retweets for insights.

## Input

```json
{
  "profiles": [
    "Lakers",
    "Warriors",
    "Cowboys",
    "Patriots",
    "Yankees"
  ],
  "maxTweetsPerProfile": 200,
  "includeRetweets": true,
  "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.