POST
/
api
/
v1
/
client
/
videofile2txt
Video File to Text (legacy)
curl --request POST \
  --url http://localhost:8000/api/v1/client/videofile2txt \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: multipart/form-data' \
  --form video='@example-file' \
  --form include_ts=true \
  --form model=WhisperLargeV3 \
  --form return_result_in_response=true \
  --form 'webhook_url=<string>'
{
  "data": {
    "request_id": "550e8400-e29b-41d4-a716-446655440000"
  }
}

Authorizations

Authorization
string
header
required

API key obtained from the ModelBeam dashboard

Body

multipart/form-data
video
file
required

Video file (MP4, MPEG, MOV, AVI, WMV, OGG; max 10MB; must contain audio)

include_ts
boolean
required
model
string
Example:

"WhisperLargeV3"

return_result_in_response
boolean
webhook_url
string
Maximum string length: 2048

Response

Transcription job created

data
object