v1

latestOpenAPI 3.0.32026-07-267015229.9 KB
Videos

List Videos

This endpoint returns a list of all Videos created by the account associated with the API Key in use.

get/v2/videos

Query parameters

limitinteger

The number of videos to return per page. Default is 10.

pageinteger

The page number to return (0-indexed). Default is 0 (first page).

Response

total_countinteger

The total number of videos given the filters provided.

Example response

{
  "data": [
    {
      "video_id": "783537ef5",
      "video_name": "My First Video",
      "status": "generating",
      "data": {
        "script": "Hello from Tavus! Enjoy your new face"
      }
    }
  ]
}