Get User Info
Get profile information for a Twitter/X user by username. Returns user details including bio, follower/following counts, verification status, and profile images. Ideal for: user lookup, follower tracking, account verification, profile monitoring.
Catalog action Social
Get profile information for a Twitter/X user by username. Returns user details including bio, follower/following counts, verification status, and profile images. Ideal for: user lookup, follower tracking, account verification, profile monitoring.
At a Glance
| Field | Value |
|---|---|
| Action ID | x-get-user-info |
| Category | Social |
| Connector | Not required |
| Requires gas | No |
| Funds movement | None declared |
| Tags | social, twitter, x, user, profile, read |
Payload Schema
| Field | Type | Required | Description |
|---|---|---|---|
username | string | Yes | Twitter username to look up (without @) |
Result Schema
| Field | Type | Required | Description |
|---|---|---|---|
status | string | Yes | "success" or "error" |
userId | string | No | Twitter user ID |
username | string | No | Username |
name | string | No | Display name |
description | string | null | No | Bio |
profilePicture | string | No | Profile picture URL |
coverPicture | string | null | No | Cover/banner URL |
location | string | null | No | Location |
followers | number | No | Follower count |
following | number | No | Following count |
statusesCount | number | No | Total tweets |
isBlueVerified | boolean | No | Blue checkmark |
verifiedType | string | null | No | null, "Business", etc |
createdAt | string | No | Account creation date |
error | string | No | Error message if failed |
Examples
json{ "type": "x-get-user-info", "payload": { "username": "example-username" }, "children": []}
bashcurl -X POST "https://api.b3os.org/v1/actions/x-get-user-info/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.
