channels_listVideos
Retrieve videos from a specific YouTube channel by providing the channel ID and optional max results. Ideal for accessing and managing YouTube content programmatically.
Instructions
Get videos from a specific channel
Input Schema
Name | Required | Description | Default |
---|---|---|---|
channelId | Yes | The YouTube channel ID | |
maxResults | No | Maximum number of results to return |
Input Schema (JSON Schema)
{
"properties": {
"channelId": {
"description": "The YouTube channel ID",
"type": "string"
},
"maxResults": {
"description": "Maximum number of results to return",
"type": "number"
}
},
"required": [
"channelId"
],
"type": "object"
}