Skip to main content
GET
/
twitter
/
user
/
followings
Get User Followings
curl --request GET \
  --url https://api.aisa.one/apis/v1/twitter/user/followings \
  --header 'Authorization: Bearer <token>'
{
  "followings": [
    {
      "type": "<string>",
      "userName": "<string>",
      "url": "<string>",
      "id": "<string>",
      "name": "<string>",
      "isBlueVerified": true,
      "verifiedType": "<string>",
      "profilePicture": "<string>",
      "coverPicture": "<string>",
      "description": "<string>",
      "location": "<string>",
      "followers": 123,
      "following": 123,
      "canDm": true,
      "createdAt": "<string>",
      "favouritesCount": 123,
      "hasCustomTimelines": true,
      "isTranslator": true,
      "mediaCount": 123,
      "statusesCount": 123,
      "withheldInCountries": [
        "<string>"
      ],
      "possiblySensitive": true,
      "pinnedTweetIds": [
        "<string>"
      ],
      "isAutomated": true,
      "automatedBy": "<string>",
      "unavailable": true,
      "message": "<string>",
      "unavailableReason": "<string>"
    }
  ],
  "has_next_page": true,
  "next_cursor": "<string>",
  "status": "success",
  "message": "<string>"
}

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

The cursor to paginate through the results. First page is empty.

pageSize
integer
default:200

The number of followings to return per page.

Required range: 20 <= x <= 200

Response

200 - application/json

Successful response

followings
object[]
has_next_page
boolean
next_cursor
string
status
enum<string>
Available options:
success,
error
message
string