Get User Followers
Get a list of followers for a Twitter/X user. Returns follower profiles with usernames, bios, follower counts, and verification status. Paginated with cursor (200 per page). Ideal for: follower analysis, audience research, community tracking, growth monitoring.
Catalog action Social
Get a list of followers for a Twitter/X user. Returns follower profiles with usernames, bios, follower counts, and verification status. Paginated with cursor (200 per page). Ideal for: follower analysis, audience research, community tracking, growth monitoring.
At a Glance
| Field | Value |
|---|---|
| Action ID | x-get-user-followers |
| Category | Social |
| Connector | Not required |
| Requires gas | No |
| Funds movement | None declared |
| Tags | social, twitter, x, followers, user, read |
Payload Schema
| Field | Type | Required | Description |
|---|---|---|---|
username | string | Yes | Twitter username (without @) to get followers for. |
cursor | string | null | No | Pagination cursor from a previous response to fetch the next page. 'null' is treated the same as omitting the field — useful for round-tripping 'nextCursor' from a prior response without extra conditional logic. |
Result Schema
| Field | Type | Required | Description |
|---|---|---|---|
status | string | Yes | "success" or "error" |
followers | array | Yes | Array of follower user objects |
totalResults | number | Yes | Number of followers in this page |
hasNextPage | boolean | Yes | Whether more results are available |
nextCursor | string | null | No | Cursor to fetch the next page, or null if no more results |
error | string | No | Error message if the request failed |
Examples
json{ "type": "x-get-user-followers", "payload": { "username": "example-username" }, "children": []}
bashcurl -X POST "https://api.b3os.org/v1/actions/x-get-user-followers/test" \ -H "Authorization: Bearer YOUR_API_KEY" \ -H "Content-Type: application/json" \ -d '{ "inputs": { "username": "example-username" }}'
Payload fields can use workflow expressions such as {{$trigger.body.amount}}, {{$nodes.fetch.result.price}}, and {{$props.asset}} when the value should come from a trigger, prior node, or reusable workflow prop.
