TwitterAPIs Docs
API ReferenceFollower Graph

User Followers

Fetch a user's followers, cursor-paginated. Returns full user objects. For large accounts, page with next_cursor until has_next_page is false. Cost: $0.0008 per call.

GET
/user/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/followers?username=naval"
{  "users": [    {      "id": "9921",      "username": "devjane",      "name": "Jane",      "followers_count": 4200,      "is_blue_verified": false    }  ],  "has_next_page": true,  "next_cursor": "DAABCgABF...",  "status": "success"}