{
  "openapi": "3.0.0",
  "info": {
    "title": "YouTube Channel Videos API (V1)",
    "version": "1.0.0",
    "description": "Retrieve a list of videos from a specific YouTube channel, providing detailed insights into content performance and upload history."
  },
  "paths": {
    "/api/youtube/get-channel-videos/v1": {
      "get": {
        "tags": [
          "YouTube"
        ],
        "summary": "Channel Videos",
        "description": "Retrieve a list of videos from a specific YouTube channel, providing detailed insights into content performance and upload history.",
        "operationId": "getChannelVideosV1",
        "parameters": [
          {
            "name": "token",
            "in": "query",
            "description": "Access token for this API service.",
            "required": true,
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "channelId",
            "in": "query",
            "description": "The unique identifier for a YouTube channel.",
            "required": true,
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "cursor",
            "in": "query",
            "description": "The cursor for pagination.",
            "required": false,
            "schema": {
              "type": "string"
            }
          }
        ],
        "responses": {
          "default": {
            "description": "default response",
            "content": {
              "application/json": {}
            }
          }
        },
        "x-order": "25001001"
      }
    }
  },
  "components": {}
}