Skip to main content
GET
Get User Followers
List the accounts that follow a given X user, identified by @handle, newest follower first. Returns up to 200 per page by default with has_next_page and next_cursor; each entry is a full user object (handle, name, bio, follower count, verification). Use this for audience analysis, mapping a competitor’s follower base, or finding influential followers. For the reverse direction (who this user follows) use get_twitter_user_followings. For only the verified subset use get_twitter_user_verified_followers — note that one takes a numeric user_id, not a handle.

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Query Parameters

userName
string
required

Screen name of the user

cursor
string

Cursor for pagination

pageSize
integer
default:200

Number of followers per page

Required range: 20 <= x <= 200

Response

200 - application/json

User followers

followers
object[]
has_next_page
boolean
next_cursor
string | null
status
enum<string>
Available options:
success,
error
msg
string
code
integer