getFullThread
Reconstruct entire Twitter threads, including all tweets and replies, by providing a tweet ID. Optionally include engagement metrics for deeper analysis of interactions.
Instructions
Reconstruct complete Twitter thread with all tweets and replies
Input Schema
Name | Required | Description | Default |
---|---|---|---|
includeMetrics | No | Include engagement metrics for each tweet (default: true) | |
tweetId | Yes | The ID of the tweet to analyze thread for |
Input Schema (JSON Schema)
{
"properties": {
"includeMetrics": {
"description": "Include engagement metrics for each tweet (default: true)",
"type": "boolean"
},
"tweetId": {
"description": "The ID of the tweet to analyze thread for",
"type": "string"
}
},
"required": [
"tweetId"
],
"type": "object"
}