Twitter List API | Read Any Public List's Members
List Data: Read the members of any public Twitter/X List.
Read the members of any public Twitter/X List.
Lists are a lightweight way to track a curated set of accounts without following each one individually, and this category reads that structure from either side: /list/members and /list/followers answer "who is in this list" and "who subscribes to it" respectively, while /list/tweets and /list/timeline answer "what has this list posted lately", the difference being that /list/timeline includes retweets from members and /list/tweets does not. All four are $0.0008 per call regardless of list size, so paging a 50-person list costs the same per request as paging a 5,000-person one.
This category has 4 endpoints. Each is a pay-per-call REST endpoint with bearer auth, JSON in and out.
| Method | Path | Cost | Description |
|---|---|---|---|
GET | /list/members | $0.0008 | Page through the members of a public Twitter/X List. |
GET | /list/followers | $0.0008 | Page through the accounts that follow a public Twitter/X List. |
GET | /list/tweets | $0.0008 | Read a public List's posts, filterable by date range and replies. |
GET | /list/timeline | $0.0008 | Read a public List's native X timeline, retweets included. |
Followers You Know GET
Return the followers of the account named by user_id that the account behind your registered session also follows: the mutual-connection overlap from your perspective. Returns full user objects, cursor-paginated. Requires a registered session and a numeric user_id. Cost: $0.0008 per call.
List Members GET
Fetch the members of a public List by its numeric ID, cursor-paginated. Returns full user objects for every account in the List. Cost: $0.0008 per call.