Skip to content
GET/user/verified_followers$0.0008 / call

Verified Followers

Fetch only the Verified (Blue) accounts that follow a user, cursor-paginated. A fast way to filter a large follower base down to higher-signal accounts.

Request

curl "https://api.twitterapis.com/user/verified_followers?username=naval" \
  -H "Authorization: Bearer $TWITTERAPIS_KEY"

Parameters

ParameterTypeRequiredDescription
usernamestringrequired

Handle without the leading @.

Example: naval

cursorstringoptional

Pagination cursor from a previous response.

Response

FieldTypeDescription
usersarray<User>

Verified follower user objects for this page.

has_next_pageboolean

True when more results are available; pass next_cursor to fetch them.

next_cursorstring

Opaque cursor token for the next page. Empty string on the final page.

statusstring

Request status, "success" on a normal response.

Example response

{
  "users": [
    {
      "id": "2178758961",
      "username": "balajis",
      "name": "Balaji",
      "is_blue_verified": true,
      "followers_count": 1000000
    }
  ],
  "has_next_page": true,
  "next_cursor": "DAABCgABF...",
  "status": "success"
}

Pricing for this endpoint

user/verified_followers costs $0.0008 per call and returns ~20 tweets, so roughly $0.04 per 1,000 tweets. No subscriptions or minimum spend.

Related endpoints