twitter_tweet_thread
Get the full ordered sequence of tweets in a thread by the same author using any tweet ID or URL from the thread. Supports pagination for long threads.
Instructions
Get all tweets in a thread: the connected chain of tweets posted by the SAME author in sequence (a tweetstorm or numbered thread). Pass any tweet id/url from the thread and the API returns the full ordered sequence. Paginate with cursor for long threads. Does NOT return replies from other users, use twitter_tweet_replies for that.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| id | No | Tweet/post numeric id (e.g. "1789012345678901234"). Provide exactly one of id or url. | |
| url | No | Full tweet URL, e.g. "https://x.com/elonmusk/status/1789012345678901234". Provide exactly one of id or url. | |
| count | No | Max items to return for this page. Typical range 1 to 200; endpoint default (20) applies if omitted. To page through results, pass the cursor from the previous response. | |
| cursor | No | Opaque pagination cursor from a previous response's next_cursor field. Omit on the first call; pass on subsequent calls to fetch the next page. |