{ "opencollection": "1.0.0", "info": { "name": "Reka Chat Videos API", "version": "1.0.0" }, "request": { "auth": { "type": "bearer", "token": "{{bearerToken}}" } }, "items": [ { "info": { "name": "Videos", "type": "folder" }, "items": [ { "info": { "name": "Upload a video", "type": "http" }, "http": { "method": "POST", "url": "https://api.reka.ai/v1/videos/upload", "body": { "type": "multipart-form", "data": [ { "name": "file", "type": "text", "value": "" }, { "name": "metadata", "type": "text", "value": "" } ] } }, "docs": "Upload a video file to the Reka Vision platform." }, { "info": { "name": "List videos", "type": "http" }, "http": { "method": "GET", "url": "https://api.reka.ai/v1/videos", "params": [ { "name": "limit", "value": "", "type": "query", "description": "Maximum number of videos to return." }, { "name": "cursor", "value": "", "type": "query", "description": "Pagination cursor." } ] }, "docs": "List videos uploaded to the caller's account." }, { "info": { "name": "Get a video", "type": "http" }, "http": { "method": "GET", "url": "https://api.reka.ai/v1/videos/:video_id", "params": [ { "name": "video_id", "value": "", "type": "path" } ] }, "docs": "Retrieve metadata for a specific uploaded video." }, { "info": { "name": "Delete a video", "type": "http" }, "http": { "method": "DELETE", "url": "https://api.reka.ai/v1/videos/:video_id", "params": [ { "name": "video_id", "value": "", "type": "path" } ] }, "docs": "Delete a video and its associated indexes." } ] } ], "bundled": true }