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.
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"}Check Follow Relationship GET
Return the directional follow relationship between a source and target user: whether the source follows the target, and whether the target follows back. Cost: $0.0008 per call.
User Following GET
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.