# Extract Detailed Tweet Data from X (Twitter)

**Use case:** 

Extract comprehensive details from specific X posts. Get tweet content, engagement metrics, and author profiles in clean JSON format.

## Input

```json
{
  "postUrls": [
    {
      "url": "https://x.com/elonmusk/status/2067438979667140620"
    },
    {
      "url": "https://x.com/NASA/status/2075599612610535438"
    }
  ],
  "flattenOutput": false,
  "includeAuthorProfile": true
}
```

## Output

```json
{
  "text": {
    "label": "Text"
  },
  "author": {
    "label": "Author"
  },
  "created_at": {
    "label": "Created at"
  },
  "post_type": {
    "label": "Post type"
  },
  "metrics": {
    "label": "Metrics"
  },
  "url": {
    "label": "Url"
  }
}
```

## About this Actor

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