Skip to content
GET/user/followers_v2$0.0008 / call

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.

Request

curl "https://api.twitterapis.com/user/followers_v2?username=naval" \
  -H "Authorization: Bearer $TWITTERAPIS_KEY"

Parameters

ParameterTypeRequiredDescription
usernamestringrequired

Handle without the leading @.

Example: naval

cursorstringoptional

Pagination cursor from a previous response.

Response

FieldTypeDescription
usersarray<User>

Follower user objects (v2 shape) for this page.

has_next_pageboolean

True when more results are available; pass next_cursor to fetch them.

next_cursorstring

Opaque cursor token for the next page. Empty string on the final page.

statusstring

Request status, "success" on a normal response.

Example response

{
  "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"
}

Pricing for this endpoint

user/followers_v2 costs $0.0008 per call and returns ~20 tweets, so roughly $0.04 per 1,000 tweets. No subscriptions or minimum spend.

Related endpoints