fetch_thread_history
Retrieves the full conversation thread for a given tweet, returning all replies and the original in chronological order. Includes author, text, timestamps, and engagement metrics.
Instructions
Retrieves the full conversation thread for a given tweet. Use this tool when the LLM needs to understand the context of a conversation, read previous replies and the original tweet, or analyze the full discussion flow. Input is a tweet_id. The tool first looks up the tweet to find its conversation_id, then searches for all tweets in that conversation and returns them ordered chronologically (oldest first). Each tweet includes author_id, text, timestamps, engagement metrics, and the in_reply_to_tweet_id for mapping reply relationships.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| tweet_id | Yes | The unique numeric string ID of the tweet to retrieve the conversation thread for. The tool will look up the tweet, find its conversation_id, and return all tweets in that conversation thread chronologically. |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| status | Yes | Indicates the outcome of the operation: "success" or "error". | |
| message | Yes | A human-readable summary of the result. | |
| data | Yes | Container holding the conversation ID and ordered thread array. |