---
title: "List Videos"
method: GET
path: "/v3/videos"
tags: ["Videos"]
---

# List Videos

`GET /v3/videos`

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

## Query parameters

- `limit` integer
- `token` string
- `folder_id` string
- `title` string

## Response `200`

Successful response

- object
  - `data` VideoDetail[]
    - `id` string, required — Unique video identifier
    - `title` string, nullable — Video title
    - `status` 'pending' | 'processing' | 'completed' | 'failed', required
    - `created_at` integer, nullable — Unix timestamp of creation
    - `completed_at` integer, nullable — Unix timestamp when video generation finished
    - `video_url` string, nullable — Presigned URL to download the video file
    - `thumbnail_url` string, nullable — URL to video thumbnail image
    - `gif_url` string, nullable — URL to animated GIF preview
    - `captioned_video_url` string, nullable — Presigned URL to download the video file with captions burned in
    - `subtitle_url` string, nullable — Presigned URL to download the SRT subtitle file
    - `duration` number, nullable — Video duration in seconds
    - `folder_id` string, nullable — ID of containing folder
    - `output_language` string, nullable — BCP-47 output language code. Present only for translated videos.
    - `failure_code` string, nullable — Machine-readable failure reason. Only present when status is failed.
    - `failure_message` string, nullable — Human-readable failure description. Only present when status is failed.
    - `video_page_url` string, nullable — URL to the video page in the HeyGen app
  - `has_more` boolean — Whether more pages are available
  - `next_token` string, nullable — Opaque cursor for the next page

## Other responses

- `400` — Invalid request parameters
- `401` — Authentication failed
- `429` — Rate limit exceeded

---

[API](https://skmtc.net/heygen/apis/heygen-external-api.md) · [All operations](https://skmtc.net/heygen/apis/heygen-external-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/heygen/heygen-external-api/revisions/e2e54726e210/schema)
