getHashtagTrends
Analyze hashtag trends and performance on Twitter by specifying a hashtag, timeframe, and period to track engagement and growth over time.
Instructions
Analyze hashtag trends and performance over time
Input Schema
Name | Required | Description | Default |
---|---|---|---|
hashtag | Yes | Hashtag to analyze (with or without #) | |
period | No | Number of periods to analyze (default: 7) | |
timeframe | No | Analysis timeframe (default: "daily") |
Input Schema (JSON Schema)
{
"properties": {
"hashtag": {
"description": "Hashtag to analyze (with or without #)",
"type": "string"
},
"period": {
"description": "Number of periods to analyze (default: 7)",
"maximum": 30,
"minimum": 1,
"type": "number"
},
"timeframe": {
"description": "Analysis timeframe (default: \"daily\")",
"enum": [
"hourly",
"daily",
"weekly"
],
"type": "string"
}
},
"required": [
"hashtag"
],
"type": "object"
}