User Followers (v2)
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.
Authorization
bearerAuth Pass your API key as a bearer token on every request: Authorization: Bearer <API_KEY>.
In: header
Query Parameters
Handle without the leading @.
Pagination cursor from a previous response.
Response Body
application/json
curl -X GET "https://example.com/user/followers_v2?username=naval"{ "users": [ { "id": "9921", "username": "devjane", "name": "Jane", "followers_count": 4200, "is_blue_verified": false, "created_at": "Wed Jan 04 09:11:00 +0000 2023" } ], "has_next_page": true, "next_cursor": "DAABCgABF...", "status": "success"}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.
User Following (v2) GETNew
The v2 variant of the following endpoint. Same data as the v1 following call, with a more consistent cursor model and additional user fields. Prefer v2 for new integrations. Cost: $0.0008 per call.