v1

latestOpenAPI 3.1.02026-07-26180242448.0 KB
Users

Get user followers

Get the list of followers for a specific user. Returns comprehensive user profile data for each follower with pagination support. Useful for audience analysis and social graph exploration.

get/v1/twitter/users/{username}/followers

Path parameters

usernamestring required
Example:elonmusk

The username (screen name) of the user.

Query parameters

cursorstring

Pagination cursor for fetching the next page of results.

Response

Successfully retrieved followers.

next_cursorstring nullable

Cursor for fetching the next page. Null if no more results.

Example response

{
  "data": [
    {
      "id": "44196397",
      "username": "elonmusk",
      "name": "Elon Musk",
      "description": "Mars & Cars, Chips & Dips",
      "location": "Mars",
      "created_at": "Tue Jun 02 20:12:29 +0000 2009"
    }
  ]
}