Twitter Follower API | Followers and Following Lists
Follower Graph: Page through followers and following lists, including the verified-only and v2 cursor-paginated variants.
Page through followers and following lists, including the verified-only and v2 cursor-paginated variants.
This category has 6 endpoints. Each is a pay-per-call REST endpoint with bearer auth, JSON in and out.
| Method | Path | Cost | Description |
|---|---|---|---|
GET | /user/followers_you_know | $0.0008 | The followers of a target account that your registered account also follows (mutual overlap). |
GET | /user/followers | $0.0008 | Page through the accounts that follow a user. |
GET | /user/following | $0.0008 | Page through the accounts a user follows. |
GET | /user/followers_v2 | $0.0008 | Followers endpoint with the v2 response shape and richer cursoring. |
GET | /user/following_v2 | $0.0008 | Following endpoint with the v2 response shape and richer cursoring. |
GET | /user/verified_followers | $0.0008 | Page through only the verified accounts that follow a user. |
Followers You Know
The followers of a target account that your registered account also follows (mutual overlap).
User Followers
Page through the accounts that follow a user.
User Following
Page through the accounts a user follows.
User Followers (v2)
Followers endpoint with the v2 response shape and richer cursoring.
User Following (v2)
Following endpoint with the v2 response shape and richer cursoring.
Verified Followers
Page through only the verified accounts that follow a user.
User Status GET
Return the liveness state of a handle: alive, suspended, not_found, or unavailable. Every outcome is an HTTP 200 and the caller branches on the status field. This exists because a standard profile lookup collapses suspended, deleted, and never-existed into one indistinguishable 404. Cost: $0.0008 per call.
User Followers GET
Fetch a user's followers, cursor-paginated. Returns full user objects. For large accounts, page with next_cursor until the users array comes back empty (the follower graph keeps returning a non-null cursor even on the final page). Cost: $0.0008 per call.