GET
/user/following_v2$0.0008 / callUser Following (v2)
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.
Request
curl "https://api.twitterapis.com/user/following_v2?username=naval" \
-H "Authorization: Bearer $TWITTERAPIS_KEY"Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
username | string | required | Handle without the leading @. Example: |
cursor | string | optional | Pagination cursor from a previous response. |
Response
| Field | Type | Description |
|---|---|---|
users | array<User> | Followed user objects (v2 shape) for this page. |
has_next_page | boolean | True when more results are available; pass next_cursor to fetch them. |
next_cursor | string | Opaque cursor token for the next page. Empty string on the final page. |
status | string | Request status, "success" on a normal response. |
Example response
{
"users": [
{
"id": "2178758961",
"username": "balajis",
"name": "Balaji",
"followers_count": 1000000,
"is_blue_verified": true,
"created_at": "Fri Nov 08 04:22:10 +0000 2013"
}
],
"has_next_page": true,
"next_cursor": "DAABCgABF...",
"status": "success"
}Pricing for this endpoint
user/following_v2 costs $0.0008 per call and returns ~20 tweets, so roughly $0.04 per 1,000 tweets. No subscriptions or minimum spend.