Get Followers
Get followers of a user, $0.05/1000 followers. When count > 5000, returns a task_id immediately (HTTP 202). Use GET /twitter/followers/task/{task_id}/status to check progress, and GET /twitter/followers/task/{task_id}/next to consume pages one by one.
Back to API Reference
/Followers & Following Endpoints
GET
/twitter/followers/{screen_name}/{count}Authorization
AuthorizationBearer token · headerrequiredGlobal API Bearer Token for TwexAPI. Included as: Authorization: Bearer <YOUR_TWEXAPI_KEY>.
Path Parameters
screen_namestringrequiredThe screen name of the user to get followers.
countintegerrequiredThe number of followers to get.
Responses
200A list of user info, or a task_id for large requests
codeintegerHTTP status code
default: 200
msgstringResponse message
default: "success"
dataUserInfo | any[] | FriendshipTaskDatarequiredList of user info, or task handle when count exceeds async threshold
Show propertiesHide properties
Any of:
UserInfo | any[]
Array of
UserInfo | anyAny of:
UserInfo
userIdstringrequiredUser ID
isBlueVerifiedbooleanrequiredBlue verification status
createdAtstringrequiredAccount creation date
createdAtDatetimestring | anyAccount creation datetime in ISO format
Show propertiesHide properties
Any of:
string
stringany
anydefaultProfilebooleanrequiredDefault profile flag
defaultProfileImagebooleanrequiredDefault profile image flag
descriptionstringrequiredBio description
locationstringrequiredLocation
fastFollowersCountintegerrequiredFast followers count
favouritesCountintegerrequiredLikes count
followersCountintegerrequiredFollowers count
followingCountintegerrequiredFollowing count
hasCustomTimelinesbooleanrequiredHas custom timelines flag
isTranslatorbooleanrequiredIs translator flag
listedCountintegerrequiredListed count
mediaCountintegerrequiredMedia count
namestringrequiredDisplay name
normalFollowersCountintegerrequiredNormal followers count
pinnedTweetIdsStrany[] | anyPinned tweet IDs
Show propertiesHide properties
Any of:
any[]
Array of
anyanyany
anypossiblySensitivebooleanrequiredPossibly sensitive flag
profileImageUrlHttpsstringrequiredProfile image URL
usernamestringrequiredUsername
statusesCountintegerrequiredTweets count
translatorTypestring | anyTranslator type
Show propertiesHide properties
Any of:
string
stringany
anyverifiedbooleanrequiredLegacy verification status
verified_typestring | anyVerification badge type: blue, business, government, etc.
Show propertiesHide properties
Any of:
string
stringany
anywithheldInCountriesany[] | anyWithheld in countries
Show propertiesHide properties
Any of:
any[]
Array of
anyanyany
anyprotectedbooleanrequiredProtected account flag
urlstring | anyUser profile URL
Show propertiesHide properties
Any of:
string
stringany
anydescriptionUrlsany[] | anyDescription URLs
Show propertiesHide properties
Any of:
any[]
Array of
anyanyany
anyurlsany[] | anyUser URLs
Show propertiesHide properties
Any of:
any[]
Array of
anyanyany
anypinnedTweetIdsany[] | anyPinned tweet IDs
Show propertiesHide properties
Any of:
any[]
Array of
anyanyany
anyany
anyFriendshipTaskData
task_idstringrequiredTask ID for polling status/next endpoints
reusedbooleanrequiredTrue if an in-flight task was reused
422Validation Error
detailValidationError[]Show propertiesHide properties
Array of
ValidationErrorlocstring | integer[]requiredShow propertiesHide properties
Array of
string | integerAny of:
string
stringinteger
integermsgstringrequiredtypestringrequiredinputanyctxobject⚡Interactive ConsoleGET
⚡Interactive Console / Try APIGETLive Console
🌐Target Server:
https://api.twexapi.io● Production Ready
🔍
Public Data Read (TwexAPI Key Only, No Twitter Cookie Required)
This endpoint queries public Twitter data — no Twitter account or Cookie required! Simply enter your TwexAPI Platform Key (Bearer Token) in the "API Authorization" section below to test.
🔑API Authorization
⚙️Parameters (2)
📡
No Response Yet
Configure parameters in the Request tab and click Send Request below.
Request
curl -X GET "https://api.twexapi.io/twitter/followers/elonmusk/200" \
-H "Authorization: Bearer YOUR_TOKEN"const response = await fetch("https://api.twexapi.io/twitter/followers/elonmusk/200", {
method: "GET",
headers: {
"Authorization": "Bearer YOUR_TOKEN"
}
});import requests
response = requests.get(
"https://api.twexapi.io/twitter/followers/elonmusk/200",
headers={
"Authorization": "Bearer YOUR_TOKEN"
},
)Response
{
"code": 200,
"msg": "success",
"data": [
{
"userId": "string",
"isBlueVerified": true,
"createdAt": "string",
"createdAtDatetime": "string",
"defaultProfile": true,
"defaultProfileImage": true,
"description": "string",
"location": "string",
"fastFollowersCount": 0,
"favouritesCount": 0,
"followersCount": 0,
"followingCount": 0,
"hasCustomTimelines": true,
"isTranslator": true,
"listedCount": 0,
"mediaCount": 0,
"name": "string",
"normalFollowersCount": 0,
"pinnedTweetIdsStr": [
null
],
"possiblySensitive": true,
"profileImageUrlHttps": "string",
"username": "string",
"statusesCount": 0,
"translatorType": "string",
"verified": true,
"verified_type": "blue",
"withheldInCountries": [
null
],
"protected": true,
"url": "string",
"descriptionUrls": [
null
],
"urls": [
null
],
"pinnedTweetIds": [
null
]
}
]
}{
"detail": [
{
"loc": [
"string"
],
"msg": "string",
"type": "string",
"input": null,
"ctx": {}
}
]
}