{ "openapi": "3.0.1", "info": { "title": "VideoSEOCopilot", "version": "v1" }, "servers": [ { "url": "https://video-seo.copilot.us" } ], "paths": { "/api/video/get": { "post": { "summary": "Retrieve video transcripts", "requestBody": { "required": true, "content": { "application/json": { "schema": { "$ref": "#/components/schemas/YTVideoRequestBody" } } } }, "responses": { "200": { "description": "Successful response", "content": { "application/json": { "schema": { "type": "object", "properties": { "ResponseInstructions": { "type": "string", "description": "Instructions for using the video transcripts to generate the video description." }, "content": { "type": "string", "description": "The video transcripts." } } } } } }, "400": { "description": "Bad request" } }, "operationId": "retrieveVideoData" } } }, "components": { "schemas": { "YTVideoRequestBody": { "type": "object", "properties": { "url": { "type": "string", "description": "Video url.", "required": true } } } } } }