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.
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"}User Followers GET
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.
User Followers (v2) GETNew
The v2 variant of the followers endpoint. Same data, with a more consistent cursor model and additional user fields. Prefer v2 for new integrations. Cost: $0.0008 per call.