userGrowthAnalytics
Track and analyze user growth patterns and engagement metrics on Twitter by specifying a username, timeframe, and analysis period to gain actionable insights.
Instructions
Analyze user growth patterns and engagement trends over time
Input Schema
Name | Required | Description | Default |
---|---|---|---|
period | No | Number of periods to analyze (default: 4) | |
timeframe | No | Analysis timeframe (default: "weekly") | |
username | Yes | Username to analyze growth patterns for |
Input Schema (JSON Schema)
{
"properties": {
"period": {
"description": "Number of periods to analyze (default: 4)",
"maximum": 12,
"minimum": 1,
"type": "number"
},
"timeframe": {
"description": "Analysis timeframe (default: \"weekly\")",
"enum": [
"daily",
"weekly",
"monthly"
],
"type": "string"
},
"username": {
"description": "Username to analyze growth patterns for",
"type": "string"
}
},
"required": [
"username"
],
"type": "object"
}