getThreadMetrics
Analyze Twitter thread performance, engagement distribution, and user interactions by specifying a root tweet ID and optional timeframe. Gain insights into metrics for better strategy optimization.
Instructions
Analyze thread performance and engagement distribution
Input Schema
Name | Required | Description | Default |
---|---|---|---|
analyzeEngagement | No | Include detailed engagement analysis (default: true) | |
timeframe | No | Analysis timeframe (default: "24h") | |
tweetId | Yes | The thread root tweet ID |
Input Schema (JSON Schema)
{
"properties": {
"analyzeEngagement": {
"description": "Include detailed engagement analysis (default: true)",
"type": "boolean"
},
"timeframe": {
"description": "Analysis timeframe (default: \"24h\")",
"type": "string"
},
"tweetId": {
"description": "The thread root tweet ID",
"type": "string"
}
},
"required": [
"tweetId"
],
"type": "object"
}