Verified Followers
Fetch only the Verified (Blue) accounts that follow a user, cursor-paginated. A fast way to filter a large follower base down to higher-signal accounts. 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/verified_followers?username=naval"{ "users": [ { "id": "2178758961", "username": "balajis", "name": "Balaji", "is_blue_verified": true, "followers_count": 1000000 } ], "has_next_page": true, "next_cursor": "DAABCgABF...", "status": "success"}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.
List Members GET
Fetch the members of a public List by its numeric ID, cursor-paginated. Returns full user objects for every account in the List. Cost: $0.0008 per call.