Get tweet thread context
get_tweet_thread_contextFetch a page of a tweet's conversation thread, including the original tweet, replies, and expanded URLs. Pass next_cursor to get more pages.
Instructions
Fetch one page of the conversation thread around a tweet (to find links in context). Returns the original tweet, intermediate replies up the chain, the tweet itself, and its direct replies; each tweet includes entities.urls with expanded links. Makes exactly one request per call: pages are uneven (a page may be empty while has_next_page is true), so pass next_cursor back as cursor to fetch the next page.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| cursor | No | Pagination cursor from a previous response's next_cursor | |
| tweet_id | Yes | The tweet ID to get the thread context for |