xAPIs.dev
API Reference · v2
Free Tools{ }OpenAPI YAMLGet API key
API Reference / User / Get verified followers

Get verified followers

GET/twitter/user/verifiedFollowers15 credits

Return the verified (blue-check) followers of an account. Cursor-paginated. The sample response below is captured from the live API. List endpoints paginate with `has_next_page` and `next_cursor`.

Authentication required
Send your key in the x-api-key header. Requests without a valid key return 401.

Query parameters

user_id
stringrequired
Numeric user ID to fetch verified followers for.
cursor
stringoptional
Pagination cursor for the next page.

Response fields

followersarray
Array of follower user objects.
has_next_pageboolean
Whether another page of results is available.
next_cursorstring
Cursor for the next page; null or empty when exhausted.
statusstring
Request status: "success" or "error".
msgstring
Status message from the upstream.
codeinteger
Numeric status code (0 = OK).
Request
curl https://v2.xapis.dev/twitter/user/verifiedFollowers \
  -G --data-urlencode "user_id=44196397" \
  -H "x-api-key: $XAPIS_KEY"
Response200 OK
application/json
{
  "followers": [
    {
      "id": "337013943",
      "name": "D. Post",
      "screen_name": "DPost4",
      "userName": "DPost4",
      "location": "",
      "url": "",
      "description": "Docent V.O. o.a: wis- en natuurkunde\nMaar:  iets breder geïnteresseerd... Wat is wetenschap?",
      "email": null,
      "followers_count": 28,
      "following_count": 172,
      "favourites_count": 117,
      "statuses_count": 346,
      "media_tweets_count": 1,
      "created_at": "Sun Jul 17 09:08:22 +0000 2011",
      "profile_banner_url": "",
      "profile_image_url_https": "https://pbs.twimg.com/profile_images/3391608414/a84a2bbfddc2d943eef37fe09225da42_normal.jpeg",
      "can_dm": true
    }
  ],
  "has_next_page": true,
  "next_cursor": "1870135222954255004|2074776432143237098",
  "status": "success",
  "msg": "success",
  "code": 0
}
base url · https://v2.xapis.dev
Ready to call Get verified followers?