v1

latestOpenAPI 3.1.02026-07-2665164286.3 KB
Videos

List Videos

Returns a paginated list of all videos in the account. Filterable by folder_id or title substring.

get/v3/videos

Query parameters

limitinteger

Maximum number of items to return per page

tokenstring

Opaque pagination cursor from a previous response

folder_idstring

Filter videos by folder ID

titlestring

Filter videos by title substring

Response

Successful response

has_moreboolean

Whether more pages are available

next_tokenstring nullable

Opaque cursor for the next page

Example response

{
  "data": [
    {
      "id": "v_abc123def456",
      "title": "My Generated Video",
      "created_at": 1711929600,
      "completed_at": 1711930200,
      "video_url": "https://files.heygen.ai/video/abc123.mp4",
      "thumbnail_url": "https://files.heygen.ai/thumb/abc123.jpg",
      "gif_url": "https://files.heygen.ai/gif/abc123.gif",
      "captioned_video_url": "https://files.heygen.ai/video/abc123_captioned.mp4",
      "subtitle_url": "https://files.heygen.ai/srt/abc123.srt",
      "duration": 30.5,
      "folder_id": "folder_abc123",
      "output_language": "en-US",
      "failure_code": "rendering_failed",
      "failure_message": "Avatar rendering timed out",
      "video_page_url": "https://app.heygen.com/video/abc123"
    }
  ]
}
All 65 operations