video_streaming_data
Retrieve video streaming data from YouTube using a video ID to access metadata and statistics for analysis or integration.
Instructions
Video Streaming Data
Query Parameters:
id (Required): Video ID
Responses:
200 (Success): Successful response
Content-Type:
application/json
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| id | Yes | Video ID |
Input Schema (JSON Schema)
{
"properties": {
"id": {
"description": "Video ID",
"type": "string"
}
},
"required": [
"id"
],
"type": "object"
}