# Export Retweeters from an X Post

**Use case:** 

Collect public profiles of users who reposted an X (Twitter) post, including usernames, bios, follower counts, verification, professional categories, affiliations, and profile links.

## Input

```json
{
  "tweets": [
    "https://x.com/SpaceX/status/2099211149476569207"
  ],
  "resultType": "retweeters",
  "maxRetweetersPerTweet": 100,
  "maxQuoteUsersPerTweet": 100,
  "includeRawUser": false
}
```

## Output

```json
{
  "status": {
    "label": "Status",
    "format": "string"
  },
  "engagement_type": {
    "label": "Engagement type",
    "format": "string"
  },
  "tweet_id": {
    "label": "Post ID",
    "format": "string"
  },
  "quote_tweet_id": {
    "label": "Quote post ID",
    "format": "string"
  },
  "profile_image_url": {
    "label": "Profile image",
    "format": "string"
  },
  "screen_name": {
    "label": "Username",
    "format": "string"
  },
  "name": {
    "label": "Name",
    "format": "string"
  },
  "user_id": {
    "label": "User ID",
    "format": "string"
  },
  "followers_count": {
    "label": "Followers",
    "format": "integer"
  },
  "friends_count": {
    "label": "Following",
    "format": "integer"
  },
  "verified": {
    "label": "Verified",
    "format": "boolean"
  },
  "is_blue_verified": {
    "label": "Blue verified",
    "format": "boolean"
  },
  "quote_text": {
    "label": "Quote text",
    "format": "string"
  },
  "quote_created_at": {
    "label": "Quote created at",
    "format": "string"
  },
  "quote_language": {
    "label": "Quote language",
    "format": "string"
  },
  "quote_reply_count": {
    "label": "Quote replies",
    "format": "integer"
  },
  "quote_retweet_count": {
    "label": "Quote retweets",
    "format": "integer"
  },
  "quote_like_count": {
    "label": "Quote likes",
    "format": "integer"
  },
  "quote_view_count": {
    "label": "Quote views",
    "format": "integer"
  },
  "created_at": {
    "label": "Account created at",
    "format": "string"
  },
  "account_label": {
    "label": "Account label",
    "format": "string"
  },
  "possibly_sensitive": {
    "label": "Possibly sensitive",
    "format": "boolean"
  },
  "professional_type": {
    "label": "Professional type",
    "format": "string"
  },
  "professional_categories": {
    "label": "Professional categories",
    "format": "array"
  },
  "affiliation_name": {
    "label": "Affiliation",
    "format": "string"
  },
  "location": {
    "label": "Location",
    "format": "string"
  },
  "description": {
    "label": "Bio",
    "format": "string"
  },
  "website_url": {
    "label": "Website",
    "format": "string"
  },
  "profile_url": {
    "label": "Profile URL",
    "format": "string"
  },
  "quote_tweet_url": {
    "label": "Quote post URL",
    "format": "string"
  },
  "tweet_url": {
    "label": "Post URL",
    "format": "string"
  },
  "message": {
    "label": "Message",
    "format": "string"
  }
}
```

## About this Actor

This example demonstrates how to use [X (Twitter) Retweeters & Quote Tweets Scraper](https://apify.com/arjun_code/x-twitter-retweeters-scraper.md) with a specific input configuration. Visit the [Actor detail page](https://apify.com/arjun_code/x-twitter-retweeters-scraper.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-retweeters-scraper.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`).
