# Extract X Post Details and Engagement

**Use case:** 

Retrieves a public X post's text, engagement metrics, translation, media metadata, and direct X CDN links without copying media files to storage.

## Input

```json
{
  "tweets": [
    "https://x.com/cb_doge/status/2099294306284830886"
  ],
  "storeMediaFiles": false,
  "videoQuality": "highest",
  "imageQuality": "original"
}
```

## Output

```json
{
  "status": {
    "label": "Status",
    "format": "string"
  },
  "message": {
    "label": "Message",
    "format": "string"
  },
  "tweet_id": {
    "label": "Tweet ID",
    "format": "string"
  },
  "tweet_url": {
    "label": "Tweet URL",
    "format": "string"
  },
  "created_at": {
    "label": "Created at",
    "format": "string"
  },
  "text": {
    "label": "Post text",
    "format": "string"
  },
  "is_article": {
    "label": "X Article post",
    "format": "boolean"
  },
  "article_title": {
    "label": "Article title",
    "format": "string"
  },
  "article_url": {
    "label": "Article URL",
    "format": "string"
  },
  "article_preview_text": {
    "label": "Article preview",
    "format": "string"
  },
  "article_cover_image_url": {
    "label": "Article cover image",
    "format": "string"
  },
  "article_block_count": {
    "label": "Article blocks",
    "format": "integer"
  },
  "author_username": {
    "label": "Author username",
    "format": "string"
  },
  "author_name": {
    "label": "Author name",
    "format": "string"
  },
  "media_count": {
    "label": "Media count",
    "format": "integer"
  },
  "stored_media_count": {
    "label": "Stored media count",
    "format": "integer"
  },
  "store_media_files": {
    "label": "Media storage requested",
    "format": "boolean"
  },
  "media_types": {
    "label": "Media types",
    "format": "array"
  },
  "view_count": {
    "label": "Views",
    "format": "integer"
  },
  "like_count": {
    "label": "Likes",
    "format": "integer"
  },
  "retweet_count": {
    "label": "Reposts",
    "format": "integer"
  },
  "reply_count": {
    "label": "Replies",
    "format": "integer"
  },
  "quote_count": {
    "label": "Quotes",
    "format": "integer"
  },
  "bookmark_count": {
    "label": "Bookmarks",
    "format": "integer"
  },
  "language": {
    "label": "Language",
    "format": "string"
  },
  "translation_available": {
    "label": "Translation available",
    "format": "boolean"
  },
  "translated_text": {
    "label": "Translated text",
    "format": "string"
  },
  "source_name": {
    "label": "Source",
    "format": "string"
  },
  "author_followers_count": {
    "label": "Author followers",
    "format": "integer"
  },
  "author_verified_type": {
    "label": "Author verified type",
    "format": "string"
  },
  "author_blue_verified": {
    "label": "Author blue verified",
    "format": "boolean"
  },
  "author_profile_url": {
    "label": "Author profile",
    "format": "string"
  }
}
```

## About this Actor

This example demonstrates how to use [X / Twitter Media Downloader & Post Details](https://apify.com/arjun_code/x-twitter-media-downloader.md) with a specific input configuration. Visit the [Actor detail page](https://apify.com/arjun_code/x-twitter-media-downloader.md) to learn more, explore other use cases, and run it yourself.


## How to integrate an Actor?

This Task's input is already configured above. Use it as-is rather than inventing a new one.

Do not guess an integration path. Every one of them is in the agent quickstart at https://apify.com/agents.md: the Apify MCP server, Agent Skills with the Apify CLI, the JavaScript and Python clients, the REST API, and the account-free path for an agent with no human to sign in. It also carries the rule on stating cost before the first paid run.

For full API examples (JavaScript, Python, CLI, MCP, OpenAPI), see this Task's Actor page: https://apify.com/arjun_code/x-twitter-media-downloader.md

Each client library has reference documentation the quickstart does not restate: [JavaScript/TypeScript](https://docs.apify.com/api/client/js/docs.md) (`npm install apify-client`) and [Python](https://docs.apify.com/api/client/python/docs.md) (`pip install apify-client`).
