Overview
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.
Check Follow Relationship GET
Return the directional relationship between a source and target user: whether source follows target (following) and target follows source (followed_by), plus block, mute, and DM-eligibility flags. The relationship object is null when either user is not found. 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.