cURL
curl --request GET \ --url https://api.zilodata.com/api/v1/x/user/{username}/followers \ --header 'Authorization: Bearer <token>'
{ "followers": [ { "id": "1234567890", "username": "elonmusk", "displayName": "Elon Musk", "bio": "Tesla, SpaceX, Neuralink, Boring Company", "followerCount": 150000000, "followingCount": 100, "tweetCount": 25000, "likeCount": 500000, "isVerified": true, "isProtected": false, "profileImageUrl": "<string>", "createdAt": "2023-11-07T05:31:56Z" } ] }
Retrieve list of users following a specific user
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Bearer <token>
<token>
Successful response
Show child attributes
"1234567890"
"elonmusk"
"Elon Musk"
"Tesla, SpaceX, Neuralink, Boring Company"
150000000
100
25000
500000
true
false
Was this page helpful?