# Extract Comments from Specific Twitter Posts

**Use case:** 

Extract comments and engagement data from specific tweets. Get insights like URLs, author profiles, likes, hashtags, stats, and media attachments.

## Input

```json
{
  "tweetUrls": [
    "https://x.com/JensenHuang/status/2080643682408321103"
  ],
  "maxComments": 10,
  "sortReplies": "Relevance",
  "minLikes": 0,
  "proxyConfiguration": {
    "useApifyProxy": true,
    "apifyProxyGroups": [
      "RESIDENTIAL"
    ]
  },
  "includeCommenterStats": true
}
```

## Output

```json
{
  "replying_to_tweet": {
    "label": "Replying To",
    "format": "link"
  },
  "tweet_url": {
    "label": "Comment URL",
    "format": "link"
  },
  "text": {
    "label": "Content",
    "format": "text"
  },
  "author": {
    "label": "Author",
    "format": "object"
  },
  "date": {
    "label": "Date",
    "format": "text"
  },
  "stats": {
    "label": "Stats",
    "format": "object"
  }
}
```

## About this Actor

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