GET
/
v2
/
videos
/
{video_id}
curl --request GET \
  --url https://tavusapi.com/v2/videos/{video_id} \
  --header 'x-api-key: <api-key>'
{
  "video_id": "<string>",
  "status": "ready",
  "data": {
    "script": "<string>"
  },
  "download_url": "<string>",
  "stream_url": "<string>",
  "hosted_url": "<string>",
  "status_details": "<string>",
  "created_at": "<string>",
  "updated_at": "<string>"
}

Authorizations

x-api-key
string
headerrequired

Path Parameters

video_id
string
required

Response

200 - application/json
video_id
string

A unique identifier for the video.

status
string

The status of the video.

data
object
download_url
string

A direct link to download your generated video.

stream_url
string

A direct link to stream your generated video.

hosted_url
string

A direct link to view your generated video, hosted by Tavus.

status_details
string

A detailed status of the video.

created_at
string

The date and time the video was created.

updated_at
string

The date and time of when the video was last updated.