TwitterAPIs Docs
API ReferenceFollower Graph

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. Cost: $0.0008 per call.

GET
/user/verified_followers

Authorization

bearerAuth
AuthorizationBearer <token>

Pass your API key as a bearer token on every request: Authorization: Bearer <API_KEY>.

In: header

Query Parameters

username*string

Handle without the leading @.

cursor?string

Pagination cursor from a previous response.

Response Body

application/json

curl -X GET "https://example.com/user/verified_followers?username=naval"
{  "users": [    {      "id": "2178758961",      "username": "balajis",      "name": "Balaji",      "is_blue_verified": true,      "followers_count": 1000000    }  ],  "has_next_page": true,  "next_cursor": "DAABCgABF...",  "status": "success"}