Skip to main content
GET
https://api.corebot.app
/
v1
/
users
/
{user_id}
/
following
curl --request GET \
  --url https://api.corebot.app/v1/users/44196397/following \
  --header 'X-API-Key: your_api_key_here'
{
  "data": {
    "users": [
      {
        "result": {
          "legacy": {
            "id_str": "123456789",
            "name": "Tech News",
            "screen_name": "technews",
            "description": "Latest technology news and updates",
            "followers_count": 2456789,
            "friends_count": 342,
            "verified": true,
            "profile_image_url_https": "https://pbs.twimg.com/profile_images/123/456_normal.jpg"
          }
        }
      },
      {
        "result": {
          "legacy": {
            "id_str": "987654321",
            "name": "Space Explorer",
            "screen_name": "spaceexplorer",
            "description": "Space enthusiast and astronomy lover",
            "followers_count": 567890,
            "friends_count": 1234,
            "verified": false,
            "profile_image_url_https": "https://pbs.twimg.com/profile_images/789/012_normal.jpg"
          }
        }
      }
    ],
    "cursor_bottom": "DAABCgABGPz1YPz__86AIG9W1OcKAAIX2ODg8_9IgAgAAwAAAAIAAA",
    "cursor_top": "DAABCgABGPz1YPz__86AIG9W1OcKAAIX2ODg8_9IgAgAAwAAAAEAAA",
    "has_more": true
  }
}

Request

user_id
string
required
The ID of the user whose following list to retrieve
count
number
default:"20"
Number of users to return per page (max: 100)
cursor
string
Pagination cursor for fetching next page of results

Headers

X-API-Key
string
required
Your API key for authentication

Response

data
object
curl --request GET \
  --url https://api.corebot.app/v1/users/44196397/following \
  --header 'X-API-Key: your_api_key_here'
{
  "data": {
    "users": [
      {
        "result": {
          "legacy": {
            "id_str": "123456789",
            "name": "Tech News",
            "screen_name": "technews",
            "description": "Latest technology news and updates",
            "followers_count": 2456789,
            "friends_count": 342,
            "verified": true,
            "profile_image_url_https": "https://pbs.twimg.com/profile_images/123/456_normal.jpg"
          }
        }
      },
      {
        "result": {
          "legacy": {
            "id_str": "987654321",
            "name": "Space Explorer",
            "screen_name": "spaceexplorer",
            "description": "Space enthusiast and astronomy lover",
            "followers_count": 567890,
            "friends_count": 1234,
            "verified": false,
            "profile_image_url_https": "https://pbs.twimg.com/profile_images/789/012_normal.jpg"
          }
        }
      }
    ],
    "cursor_bottom": "DAABCgABGPz1YPz__86AIG9W1OcKAAIX2ODg8_9IgAgAAwAAAAIAAA",
    "cursor_top": "DAABCgABGPz1YPz__86AIG9W1OcKAAIX2ODg8_9IgAgAAwAAAAEAAA",
    "has_more": true
  }
}