# X Twitter Comments Data Extractor

**Use case:** 

Scrape comments from specific X (Twitter) posts. Retrieve comment text, author details, likes, replies, views, and timestamps for in-depth analysis.

## Input

```json
{
  "postUrls": [
    "https://x.com/IntCyberDigest/status/2051790347370373289",
    "https://x.com/X/status/2043383260927918213",
    "https://x.com/NatGeo/status/2052010494282682723"
  ],
  "maxCommentsPerPost": 30,
  "proxyConfiguration": {
    "useApifyProxy": false
  }
}
```

## Output

```json
{
  "post_url": {
    "label": "Post URL",
    "format": "link"
  },
  "comment_id": {
    "label": "Comment ID",
    "format": "text"
  },
  "text": {
    "label": "Text",
    "format": "text"
  },
  "reply_to": {
    "label": "Reply To",
    "format": "text"
  },
  "likes": {
    "label": "Likes",
    "format": "number"
  },
  "replies": {
    "label": "Replies",
    "format": "number"
  },
  "views": {
    "label": "Views",
    "format": "number"
  },
  "created_at": {
    "label": "Posted At",
    "format": "text"
  },
  "author_username": {
    "label": "Username",
    "format": "text"
  },
  "author_name": {
    "label": "Name",
    "format": "text"
  },
  "author_followers": {
    "label": "Followers",
    "format": "number"
  },
  "author_verified": {
    "label": "Verified",
    "format": "text"
  },
  "author_id": {
    "label": "Author ID",
    "format": "text"
  }
}
```

## About this Actor

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