twitter_list_timeline
Fetch a public X/Twitter List's native feed in its original order, including member retweets. Use for viewing the list as shown on x.com, with cursor pagination and no date or reply filters.
Instructions
Read a public Twitter/X List's NATIVE feed, the same posts and the same ordering the List shows on x.com, including members' retweets. It takes only list_id, count and cursor: no date range and no reply filter exist on this endpoint, because a native timeline cannot honour search operators. Use twitter_list_tweets when you need a date range or want replies filtered out, and accept that it drops retweets in exchange. Paginate with cursor until the tweets array comes back empty.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| count | No | Max posts to return for this page. Defaults to 20 and is clamped to 1-100, so a larger number returns at most 100 rather than erroring. | |
| cursor | No | Opaque pagination cursor from a previous response's next_cursor field. Omit on the first call. | |
| list_id | Yes | Numeric Twitter/X List id. Found in the list URL: x.com/i/lists/<list_id>. The List must be public. |