# Export Followers from Multiple X Accounts

**Use case:** 

Export public follower profiles from multiple X accounts in one run. No login required. Keep source-account attribution and download clean JSON, CSV, or Excel.

## Input

```json
{
  "screenNames": [
    "OpenAI",
    "AnthropicAI",
    "GoogleDeepMind"
  ],
  "userIds": [],
  "relationshipType": "followers",
  "maxItemsPerUser": 10,
  "includeRawUser": false
}
```

## Output

```json
{
  "status": {
    "label": "Status",
    "format": "string"
  },
  "error": {
    "label": "Error",
    "format": "string"
  },
  "source_screen_name": {
    "label": "Source screen name",
    "format": "string"
  },
  "source_user_id": {
    "label": "Source user ID",
    "format": "string"
  },
  "relationship_type": {
    "label": "Relationship type",
    "format": "string"
  },
  "user_id": {
    "label": "User ID",
    "format": "string"
  },
  "screen_name": {
    "label": "Screen name",
    "format": "string"
  },
  "profile_url": {
    "label": "X profile URL",
    "format": "string"
  },
  "name": {
    "label": "Name",
    "format": "string"
  },
  "description": {
    "label": "Bio",
    "format": "string"
  },
  "location": {
    "label": "Location",
    "format": "string"
  },
  "followers_count": {
    "label": "Followers",
    "format": "integer"
  },
  "friends_count": {
    "label": "Following",
    "format": "integer"
  },
  "tweets_count": {
    "label": "Posts",
    "format": "integer"
  },
  "media_count": {
    "label": "Media posts",
    "format": "integer"
  },
  "pinned_tweet_ids": {
    "label": "Pinned tweet IDs",
    "format": "array"
  },
  "verified": {
    "label": "Verified",
    "format": "boolean"
  },
  "protected": {
    "label": "Protected",
    "format": "boolean"
  },
  "default_profile": {
    "label": "Default profile",
    "format": "boolean"
  },
  "geo_enabled": {
    "label": "Geo enabled",
    "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 in countries",
    "format": "array"
  },
  "website_url": {
    "label": "Website URL",
    "format": "string"
  },
  "profile_image_url": {
    "label": "Profile image",
    "format": "string"
  }
}
```

## About this Actor

This example demonstrates how to use [X Followers & Following Scraper — No Login](https://apify.com/arjun_code/x-twitter-followers-followings-scraper.md) with a specific input configuration. Visit the [Actor detail page](https://apify.com/arjun_code/x-twitter-followers-followings-scraper.md) to learn more, explore other use cases, and run it yourself.


## How to integrate an Actor?

If asked about integration, you help developers integrate Actors into their projects.
You adapt to their stack and deliver integrations that are safe, well-documented, and production-ready.
This Task's input is already configured above — use it as-is rather than inventing a new one.

- **AI agents and MCP clients** — the [Apify MCP server](https://docs.apify.com/integrations/mcp.md) at `https://mcp.apify.com` (remote, streamable HTTP, OAuth on first use).
- **Agentic workflows and local Actor development** — [Agent Skills](https://apify.com/.well-known/agent-skills/index.json) with the [Apify CLI](https://docs.apify.com/cli/docs.md): `npm install -g apify-cli`, then `apify login`.
- **JavaScript/TypeScript projects** — the official [JS/TS client](https://docs.apify.com/api/client/js/docs.md): `npm install apify-client`.
- **Python projects** — the official [Python client](https://docs.apify.com/api/client/python/docs.md): `pip install apify-client`.
- **Any other language** — the [REST API](https://docs.apify.com/api/v2.md).

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

For more details, see Apify documentation as [Markdown index](https://docs.apify.com/llms.txt) and [Markdown full-text](https://docs.apify.com/llms-full.txt).
