twitter_list_followers
Fetch the followers of a specific Twitter List by its numeric ID, with pagination support. Distinguish followers from members.
Instructions
Fetch a public List's followers by its numeric id, cursor-paginated. Followers and members are different sets of people: members are the accounts the List owner added to it, followers are the accounts that subscribed to read it. A List with hundreds of members commonly has only a handful of followers, so a small count here is normal and is not a truncated page. Use twitter_list_members for the member roster instead.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| count | No | Max items to return for this page. Defaults to 20 and is clamped to 1-100. | |
| cursor | No | Opaque pagination cursor from a previous response's next_cursor field. Omit on the first call. next_cursor is null once X marks the follower list complete. | |
| list_id | Yes | Numeric Twitter/X List id. Found in the list URL: x.com/i/lists/<list_id>. |