getStreamStats
Track and analyze streaming statistics by entering a streamer's name and selecting a time period to view detailed insights on performance and engagement.
Instructions
Get comprehensive streaming statistics and analytics for a streamer
Input Schema
Name | Required | Description | Default |
---|---|---|---|
period | No | Time period for statistics (default: week) | week |
streamerName | Yes | The name of the streamer whose stats to fetch |
Input Schema (JSON Schema)
{
"properties": {
"period": {
"default": "week",
"description": "Time period for statistics (default: week)",
"enum": [
"day",
"week",
"month",
"year",
"all"
],
"type": "string"
},
"streamerName": {
"description": "The name of the streamer whose stats to fetch",
"type": "string"
}
},
"required": [
"streamerName"
],
"type": "object"
}