Phoenix Replicas
Conversational Video Interface
Replica Personas
List Videos
This endpoint returns a list of all Videos created by the account associated with the API Key in use.
curl --request GET \
--url https://tavusapi.com/v2/videos \
--header 'x-api-key: <api-key>'
{
"data": [
{
"video_id": "783537ef5",
"video_name": "My First Video",
"status": "generating",
"data": {
"script": "Hello from Tavus! Enjoy your new replica"
},
"download_url": "",
"hosted_url": "<string>",
"stream_url": "",
"status_details": "",
"background_url": "",
"background_source_url": "",
"still_image_thumbnail_url": "",
"gif_thumbnail_url": "",
"error_details": ""
}
],
"total_count": 123
}
Authorizations
Query Parameters
The number of videos to return per page. Default is 10.
The page number to return. Default is 1.
Response
A unique identifier for the video.
A name for the video.
The status of the video. Possible values: queued, generating, ready, deleted, error.
A link to download the video.
A link to view the video.
A link to stream the video.
A detailed status of the video.
A link to a website. This will be used as the background for the video. The website must be publicly accessible and properly formed.
A direct link to a video that is publicly accessible via a storage location such as an S3 bucket. This will be used as the background for the video. The video must be publicly accessible.
A link to a still image that is a thumbnail of the video.
A link to a gif that is a thumbnail of the video.
If the video has an error, this will contain the error message.
The total number of videos given the filters provided.
curl --request GET \
--url https://tavusapi.com/v2/videos \
--header 'x-api-key: <api-key>'
{
"data": [
{
"video_id": "783537ef5",
"video_name": "My First Video",
"status": "generating",
"data": {
"script": "Hello from Tavus! Enjoy your new replica"
},
"download_url": "",
"hosted_url": "<string>",
"stream_url": "",
"status_details": "",
"background_url": "",
"background_source_url": "",
"still_image_thumbnail_url": "",
"gif_thumbnail_url": "",
"error_details": ""
}
],
"total_count": 123
}