analyze-channel-videos
Evaluate recent videos from a YouTube channel to uncover performance trends by analyzing metrics like views, ratings, and upload dates. Specify channel ID and sorting preferences for targeted insights.
Instructions
Analyze recent videos from a specific channel to identify performance trends
Input Schema
Name | Required | Description | Default |
---|---|---|---|
channelId | Yes | ||
maxResults | No | ||
sortBy | No |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"channelId": {
"minLength": 1,
"type": "string"
},
"maxResults": {
"maximum": 50,
"minimum": 1,
"type": "number"
},
"sortBy": {
"enum": [
"date",
"viewCount",
"rating"
],
"type": "string"
}
},
"required": [
"channelId"
],
"type": "object"
}