Skip to main content
GET
/
user
/
{username}
/
following
Get X User Following
curl --request GET \
  --url https://api.zilodata.com/api/v1/x/user/{username}/following \
  --header 'Authorization: Bearer <token>'
{
  "following": [
    {
      "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"
    }
  ]
}

Authorizations

Authorization
string
header
required

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

Path Parameters

username
string
required

Query Parameters

limit
integer
default:100

Response

200 - application/json

Successful response

following
object[]