TwitterAPIs Docs
API ReferenceFollower Graph

User Followers (v2)

The v2 variant of the followers endpoint. Same data, with a more consistent cursor model and additional user fields. Prefer v2 for new integrations. Cost: $0.0008 per call.

GET
/user/followers_v2

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/followers_v2?username=naval"
{  "users": [    {      "id": "9921",      "username": "devjane",      "name": "Jane",      "followers_count": 4200,      "is_blue_verified": false,      "created_at": "Wed Jan 04 09:11:00 +0000 2023"    }  ],  "has_next_page": true,  "next_cursor": "DAABCgABF...",  "status": "success"}