# Export Members of an X List

**Use case:** 

Enter an X List ID or URL to export its visible public members. Get usernames, profile URLs, bios, follower counts, verification, professional categories, affiliations, profile images, and other public profile fields.

## Input

```json
{
  "operation": "members",
  "accountListType": "all",
  "screenNames": [],
  "userIds": [],
  "listIds": [
    "https://x.com/i/lists/1455191294725312517"
  ],
  "maxListsPerAccount": 100,
  "maxUsersPerList": 100
}
```

## Output

```json
{
  "status": {
    "label": "Status",
    "format": "string"
  },
  "result_type": {
    "label": "Result type",
    "format": "string"
  },
  "operation": {
    "label": "Operation",
    "format": "string"
  },
  "relationship_type": {
    "label": "Relationship",
    "format": "string"
  },
  "requested_identifier": {
    "label": "Requested input",
    "format": "string"
  },
  "list_id": {
    "label": "List ID",
    "format": "string"
  },
  "list_url": {
    "label": "List URL",
    "format": "string"
  },
  "user_id": {
    "label": "User ID",
    "format": "string"
  },
  "screen_name": {
    "label": "Username",
    "format": "string"
  },
  "name": {
    "label": "Name",
    "format": "string"
  },
  "profile_url": {
    "label": "Profile URL",
    "format": "string"
  },
  "description": {
    "label": "Description",
    "format": "string"
  },
  "location": {
    "label": "Location",
    "format": "string"
  },
  "website_url": {
    "label": "Website",
    "format": "string"
  },
  "account_created_at": {
    "label": "Account created at",
    "format": "string"
  },
  "followers_count": {
    "label": "Followers",
    "format": "integer"
  },
  "following_count": {
    "label": "Following",
    "format": "integer"
  },
  "tweets_count": {
    "label": "Posts",
    "format": "integer"
  },
  "media_count": {
    "label": "Media posts",
    "format": "integer"
  },
  "likes_count": {
    "label": "Likes",
    "format": "integer"
  },
  "verified": {
    "label": "Verified",
    "format": "boolean"
  },
  "is_blue_verified": {
    "label": "Blue verified",
    "format": "boolean"
  },
  "protected": {
    "label": "Protected",
    "format": "boolean"
  },
  "possibly_sensitive": {
    "label": "Possibly sensitive",
    "format": "boolean"
  },
  "profile_description_language": {
    "label": "Bio language",
    "format": "string"
  },
  "profile_interstitial_type": {
    "label": "Profile interstitial type",
    "format": "string"
  },
  "can_media_tag": {
    "label": "Can be media tagged",
    "format": "boolean"
  },
  "professional_type": {
    "label": "Professional type",
    "format": "string"
  },
  "professional_categories": {
    "label": "Professional categories",
    "format": "array"
  },
  "affiliation_name": {
    "label": "Affiliation",
    "format": "string"
  },
  "affiliation_url": {
    "label": "Affiliation URL",
    "format": "string"
  },
  "affiliation_badge_url": {
    "label": "Affiliation badge",
    "format": "string"
  },
  "pinned_tweet_ids": {
    "label": "Pinned post IDs",
    "format": "array"
  },
  "account_label": {
    "label": "Account label",
    "format": "string"
  },
  "profile_image_shape": {
    "label": "Profile image shape",
    "format": "string"
  },
  "subscription_eligible": {
    "label": "Subscription eligible",
    "format": "boolean"
  },
  "has_graduated_access": {
    "label": "Has graduated access",
    "format": "boolean"
  },
  "translator_type": {
    "label": "Translator type",
    "format": "string"
  },
  "bio_urls": {
    "label": "Bio URLs",
    "format": "array"
  },
  "bio_mentions": {
    "label": "Bio mentions",
    "format": "array"
  },
  "bio_hashtags": {
    "label": "Bio hashtags",
    "format": "array"
  },
  "profile_image_url": {
    "label": "Avatar",
    "format": "string"
  },
  "profile_banner_url": {
    "label": "Profile banner",
    "format": "string"
  }
}
```

## About this Actor

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