Execute video workflow
post/video/{video_id}/workflow/
Path parameters
video_idstring required
Example:m-12345
Request body
Example request
{
"workflow_type": "transcribe",
"config": {
"language": "en",
"model": "gpt-4"
}
}Response
Workflow started
Example response
{
"success": true,
"status": "processing",
"data": {
"id": "job-123",
"output_url": "https://api.videodb.io/async-response/job-123"
}
}