getConversationTree
Analyze and map the full structure of Twitter conversations, including replies and quotes, starting from a root tweet ID, with customizable depth and quote inclusion settings.
Instructions
Map complete conversation structure including replies and quotes
Input Schema
Name | Required | Description | Default |
---|---|---|---|
includeQuotes | No | Include quote tweets in analysis (default: true) | |
maxDepth | No | Maximum conversation depth to analyze (default: 3) | |
tweetId | Yes | The root tweet ID to map conversation for |
Input Schema (JSON Schema)
{
"properties": {
"includeQuotes": {
"description": "Include quote tweets in analysis (default: true)",
"type": "boolean"
},
"maxDepth": {
"description": "Maximum conversation depth to analyze (default: 3)",
"maximum": 5,
"minimum": 1,
"type": "number"
},
"tweetId": {
"description": "The root tweet ID to map conversation for",
"type": "string"
}
},
"required": [
"tweetId"
],
"type": "object"
}