getPlayHistory
Retrieve a streamer's song performance history with pagination and date filtering for detailed insights and analysis.
Instructions
Get performance history for a streamer with pagination and filtering options
Input Schema
Name | Required | Description | Default |
---|---|---|---|
endDate | No | End date for filtering (ISO 8601 format, optional) | |
limit | No | Maximum number of history entries to return (default: 50) | |
offset | No | Number of entries to skip for pagination (default: 0) | |
startDate | No | Start date for filtering (ISO 8601 format, optional) | |
streamerName | Yes | The name of the streamer whose play history to fetch |
Input Schema (JSON Schema)
{
"properties": {
"endDate": {
"description": "End date for filtering (ISO 8601 format, optional)",
"type": "string"
},
"limit": {
"default": 50,
"description": "Maximum number of history entries to return (default: 50)",
"type": "number"
},
"offset": {
"default": 0,
"description": "Number of entries to skip for pagination (default: 0)",
"type": "number"
},
"startDate": {
"description": "Start date for filtering (ISO 8601 format, optional)",
"type": "string"
},
"streamerName": {
"description": "The name of the streamer whose play history to fetch",
"type": "string"
}
},
"required": [
"streamerName"
],
"type": "object"
}