compare-videos
Analyze and compare statistics for up to 10 YouTube videos, helping users make data-driven decisions by evaluating performance metrics side by side.
Instructions
Compare statistics for multiple YouTube videos
Input Schema
Name | Required | Description | Default |
---|---|---|---|
videoIds | Yes |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"videoIds": {
"items": {
"type": "string"
},
"maxItems": 10,
"minItems": 2,
"type": "array"
}
},
"required": [
"videoIds"
],
"type": "object"
}