GetXAPI
Users

Verified Followers

Get a user's verified (blue check) followers

GET /twitter/user/verified_followers

Query Parameters

ParameterTypeRequiredDescription
userNamestringYesScreen name (without @)
cursorstringNoPagination cursor

Notes

  • Returns ~20 verified (blue check) followers per page.

Response

{
  "userName": "elonmusk",
  "user_count": 20,
  "has_more": true,
  "next_cursor": "DAABCgABG...",
  "verified_followers": [
    {
      "type": "user",
      "id": "44073696",
      "userName": "roydanroy",
      "name": "Dan Roy",
      "url": "https://x.com/roydanroy",
      "isVerified": false,
      "isBlueVerified": true,
      "profilePicture": "https://pbs.twimg.com/profile_images/...",
      "coverPicture": "https://pbs.twimg.com/profile_banners/...",
      "description": "@Google DeepMind. On leave, Canada CIFAR AI Chair...",
      "location": "London",
      "followers": 61518,
      "following": 1858,
      "tweets": 5200,
      "listed": 300,
      "createdAt": "Tue Jun 02 06:32:26 +0000 2009",
      "canDm": true
    }
  ]
}

Example

curl -H "Authorization: Bearer API_KEY" "https://api.getxapi.com/twitter/user/verified_followers?userName=elonmusk"

# With pagination
curl -H "Authorization: Bearer API_KEY" "https://api.getxapi.com/twitter/user/verified_followers?userName=elonmusk&cursor=DAABCgABG..."

On this page