# Extract an X Post Author Profile

**Use case:** 

Uses a public X post to retrieve its author's bio, account age, follower counts, verification, professional category, website, avatar, and banner.

## Input

```json
{
  "tweets": [
    "https://x.com/NASA/status/2095890073031966734"
  ],
  "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"
  },
  "author_id": {
    "label": "Author ID",
    "format": "string"
  },
  "author_profile_image_url": {
    "label": "Author profile image",
    "format": "string"
  },
  "author_username": {
    "label": "Author username",
    "format": "string"
  },
  "author_name": {
    "label": "Author name",
    "format": "string"
  },
  "author_profile_url": {
    "label": "Author profile",
    "format": "string"
  },
  "author_description": {
    "label": "Author bio",
    "format": "string"
  },
  "author_location": {
    "label": "Author location",
    "format": "string"
  },
  "author_website_url": {
    "label": "Author website",
    "format": "string"
  },
  "author_created_at": {
    "label": "Author created at",
    "format": "string"
  },
  "author_followers_count": {
    "label": "Author followers",
    "format": "integer"
  },
  "author_following_count": {
    "label": "Author following",
    "format": "integer"
  },
  "author_tweets_count": {
    "label": "Author posts",
    "format": "integer"
  },
  "author_media_count": {
    "label": "Author media posts",
    "format": "integer"
  },
  "author_verified_type": {
    "label": "Author verified type",
    "format": "string"
  },
  "author_blue_verified": {
    "label": "Author blue verified",
    "format": "boolean"
  },
  "author_protected": {
    "label": "Author protected",
    "format": "boolean"
  },
  "author_professional_type": {
    "label": "Author professional type",
    "format": "string"
  },
  "author_professional_categories": {
    "label": "Author professional categories",
    "format": "array"
  },
  "author_affiliation_name": {
    "label": "Author affiliation",
    "format": "string"
  },
  "author_affiliation_url": {
    "label": "Author affiliation URL",
    "format": "string"
  },
  "author_profile_banner_url": {
    "label": "Author profile banner",
    "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`).
