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

Authorizations

x-api-key
string
header
required

Path Parameters

video_id
string
required

A unique identifier for the video.

Query Parameters

verbose
boolean

If set to true, the response will include additional video data such as the thumbnail image and gif links.

Response

200
application/json

OK

The response is of type object.