Skip to main content
POST
/
video
/
transcriptions
/api/v1/video/transcriptions
curl --request POST \
  --url https://api.venice.ai/api/v1/video/transcriptions \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "url": "https://www.youtube.com/watch?v=dQw4w9WgXcQ",
  "response_format": "json"
}
'
{
  "transcript": "<string>",
  "lang": "en"
}
Send a publicly accessible video URL in url. Optionally set response_format to json (default) or text depending on whether you want structured output or plain transcript text.

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Body

application/json

Request to transcribe a video URL to text.

url
string<uri>
required

Publicly accessible video URL to transcribe.

Example:

"https://www.youtube.com/watch?v=dQw4w9WgXcQ"

response_format
enum<string>
default:json

The format of the transcript output, in one of these options: json, text.

Available options:
json,
text
Example:

"json"

Response

Video transcription completed successfully

Video transcription response.

transcript
string
required

The transcribed text from the video.

lang
string

Detected language code for the transcript.

Example:

"en"