youtube
YOUTUBE_GET_CHANNEL_ACTIVITIES
Gets recent activities from a YouTube channel including video uploads, playlist additions, likes, and other channel events.
Remote youtube
Other tools also called YOUTUBE_GET_CHANNEL_ACTIVITIES?
See providers with this name
Input Schema
{
"type": "object",
"properties": {
"part": {
"type": "string",
"title": "Part",
"default": "snippet,contentDetails",
"examples": [
"snippet,contentDetails"
],
"description": "Comma-separated list of activity resource properties to include (e.g., 'snippet', 'contentDetails', 'id')."
},
"channelId": {
"type": "string",
"title": "Channel Id",
"examples": [
"UCBJycsmduvYEL83R_U4JriQ"
],
"description": "The YouTube channel ID to retrieve activities for. Channel IDs typically start with 'UC'."
},
"pageToken": {
"type": "string",
"title": "Page Token",
"examples": [
"CAUQAA"
],
"description": "Pagination token from a previous response to get the next page of results."
},
"maxResults": {
"type": "integer",
"title": "Max Results",
"default": 25,
"maximum": 50,
"minimum": 0,
"examples": [
25
],
"description": "Maximum number of activities to return."
},
"publishedAfter": {
"type": "string",
"title": "Published After",
"examples": [
"2024-01-01T00:00:00Z"
],
"description": "Return activities published after this date-time (RFC 3339 format: YYYY-MM-DDTHH:MM:SSZ)."
},
"publishedBefore": {
"type": "string",
"title": "Published Before",
"examples": [
"2024-12-31T23:59:59Z"
],
"description": "Return activities published before this date-time (RFC 3339 format: YYYY-MM-DDTHH:MM:SSZ)."
}
}
}