Get Followers by Page
Retrieve a paginated list of followers using cursor-based pagination. Each page returns up to 200 followers. Pass next_cursor from the previous response to continue. Pricing: $0.05 per 1,000 followers.
Back to API Reference
/Followers & Following Endpoints
POST
/twitter/followers/pageAuthorization
AuthorizationBearer token · headerrequiredGlobal API Bearer Token for TwexAPI. Included as: Authorization: Bearer <YOUR_TWEXAPI_KEY>.
Request Body
requiredapplication/jsonnext_cursorstring | anyCursor returned by the previous page. Leave empty to fetch the first page.
Show propertiesHide properties
Any of:
string
stringany
anyscreen_namestringrequiredTwitter screen name of the target user (with or without @).
Responses
200Current page data (up to 200 followers) and pagination metadata (has_next_page, next_cursor).
codeintegerHTTP status code
default: 200
msgstringResponse message
default: "success"
dataUserInfo | any[]requiredCurrent page follower items.
Show propertiesHide properties
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
anyhas_next_pagebooleanrequiredWhether another page is available.
next_cursorstring | anyUse this cursor to fetch the next page when has_next_page is true.
Show propertiesHide properties
Any of:
string
stringany
any422Validation Error
detailValidationError[]Show propertiesHide properties
Array of
ValidationErrorlocstring | integer[]requiredShow propertiesHide properties
Array of
string | integerAny of:
string
stringinteger
integermsgstringrequiredtypestringrequiredinputanyctxobject⚡Interactive ConsolePOST
⚡Interactive Console / Try APIPOSTLive 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
📝Request Bodyapplication/json
📡
No Response Yet
Configure parameters in the Request tab and click Send Request below.
Request
curl -X POST "https://api.twexapi.io/twitter/followers/page" \
-H "Authorization: Bearer YOUR_TOKEN" \
-H "Content-Type: application/json" \
-d '{
"next_cursor": "",
"screen_name": "elonmusk"
}'const response = await fetch("https://api.twexapi.io/twitter/followers/page", {
method: "POST",
headers: {
"Authorization": "Bearer YOUR_TOKEN",
"Content-Type": "application/json"
},
body: JSON.stringify({
"next_cursor": "",
"screen_name": "elonmusk"
})
});import requests
response = requests.post(
"https://api.twexapi.io/twitter/followers/page",
headers={
"Authorization": "Bearer YOUR_TOKEN",
"Content-Type": "application/json"
},
json={
"next_cursor": "",
"screen_name": "elonmusk"
},
)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
]
}
],
"has_next_page": true,
"next_cursor": "1234567890"
}{
"detail": [
{
"loc": [
"string"
],
"msg": "string",
"type": "string",
"input": null,
"ctx": {}
}
]
}