Lists
List followers of an X List
get/x/lists/{id}/followers
Path parameters
idstring required
List ID
Query parameters
cursorstring
Pagination cursor for list followers
pageSizeinteger
Maximum user profiles requested from this page (20-200, default 200). The response can contain fewer profiles because the source returned fewer or remaining credits cover fewer results. Keep requesting next_cursor while has_next_page is true. The deprecated limit and count aliases remain accepted.
Response
List of followers
Example response
{
"users": [
{
"id": "9876543210",
"username": "elonmusk",
"name": "Elon Musk"
}
],
"has_next_page": true,
"next_cursor": "DAACCgACGRElMJcAAA"
}