youtube
YOUTUBE_GET_VIDEO_DETAILS_BATCH
Retrieves multiple YouTube video resource parts in a single batch call. Use when you need cohort-level metrics for many videos to reduce quota usage and latency.
Remote youtube
Other tools also called YOUTUBE_GET_VIDEO_DETAILS_BATCH?
See providers with this name
Input Schema
{
"type": "object",
"properties": {
"hl": {
"type": "string",
"title": "Hl",
"default": null,
"examples": [
"en"
],
"nullable": true,
"description": "Language for localized metadata (snippet.localized); IETF language tag, e.g., 'en'."
},
"id": {
"type": "array",
"items": {
"type": "string",
"properties": {}
},
"title": "Id",
"examples": [
[
"dQw4w9WgXcQ",
"eX2qFMC8cFo"
]
],
"description": "List of YouTube video IDs to retrieve (comma-separated in request)."
},
"parts": {
"type": "array",
"items": {
"enum": [
"contentDetails",
"fileDetails",
"id",
"liveStreamingDetails",
"localizations",
"paidProductPlacementDetails",
"player",
"processingDetails",
"recordingDetails",
"snippet",
"statistics",
"status",
"suggestions",
"topicDetails"
],
"type": "string",
"properties": {}
},
"title": "Parts",
"examples": [
[
"snippet",
"statistics"
],
[
"snippet",
"contentDetails",
"statistics"
]
],
"description": "Comma-separated list of video resource properties to include. Valid parts can be one or more of: snippet, contentDetails, statistics, status, player, topicDetails, recordingDetails, fileDetails, processingDetails, suggestions, liveStreamingDetails, localizations, paidProductPlacementDetails, id."
}
}
}