# Export Subscribers of an X List

**Use case:** 

Enter an X List ID or URL to export the visible public profiles that follow that List. Get usernames, profile URLs, bios, follower counts, verification, profile images, account metadata, and other public fields.

## Input

```json
{
  "operation": "subscribers",
  "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"
  },
  "listed_count": {
    "label": "Listed count",
    "format": "integer"
  },
  "verified": {
    "label": "Verified",
    "format": "boolean"
  },
  "protected": {
    "label": "Protected",
    "format": "boolean"
  },
  "profile_image_url": {
    "label": "Avatar",
    "format": "string"
  },
  "profile_banner_url": {
    "label": "Profile banner",
    "format": "string"
  },
  "pinned_tweet_ids": {
    "label": "Pinned post IDs",
    "format": "array"
  },
  "bio_urls": {
    "label": "Bio URLs",
    "format": "array"
  },
  "bio_mentions": {
    "label": "Bio mentions",
    "format": "array"
  },
  "bio_hashtags": {
    "label": "Bio hashtags",
    "format": "array"
  },
  "can_media_tag": {
    "label": "Can be media tagged",
    "format": "boolean"
  },
  "geo_enabled": {
    "label": "Geo enabled",
    "format": "boolean"
  },
  "default_profile": {
    "label": "Default profile",
    "format": "boolean"
  },
  "default_profile_image": {
    "label": "Default profile image",
    "format": "boolean"
  },
  "has_extended_profile": {
    "label": "Has extended profile",
    "format": "boolean"
  },
  "has_custom_timelines": {
    "label": "Has custom timelines",
    "format": "boolean"
  },
  "advertiser_account_type": {
    "label": "Advertiser account type",
    "format": "string"
  },
  "business_profile_state": {
    "label": "Business profile state",
    "format": "string"
  },
  "withheld_in_countries": {
    "label": "Withheld countries",
    "format": "array"
  },
  "translator_type": {
    "label": "Translator type",
    "format": "string"
  },
  "lang": {
    "label": "Language",
    "format": "string"
  },
  "time_zone": {
    "label": "Time zone",
    "format": "string"
  },
  "utc_offset": {
    "label": "UTC offset",
    "format": "integer"
  }
}
```

## 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`).
