TwitterAPIs Docs
API ReferenceFollower Graph

User Following

Fetch the accounts a user follows, cursor-paginated. Returns full user objects. Page with next_cursor until has_next_page is false. Cost: $0.0008 per call.

GET
/user/following

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/following?username=naval"
{  "users": [    {      "id": "2178758961",      "username": "balajis",      "name": "Balaji",      "followers_count": 1000000,      "is_blue_verified": true    }  ],  "has_next_page": true,  "next_cursor": "DAABCgABF...",  "status": "success"}