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

# List videos

`GET /videos`

List recently generated videos for the current project.

## Query parameters

- `limit` integer
- `order` 'asc' | 'desc'
- `after` string — Identifier for the last item from the previous pagination request

## Response `200`

Success

- VideoListResource
  - `object` 'list', required — The type of object returned, must be `list`.
  - `data` VideoResource[], required — A list of items
    - `id` string, required — Unique identifier for the video job.
    - `object` 'video', required — The object type, which is always `video`.
    - `model` union, required
      - string
      - 'sora-2' | 'sora-2-pro' | 'sora-2-2025-10-06' | 'sora-2-pro-2025-10-06' | 'sora-2-2025-12-08'
    - `status` 'queued' | 'in_progress' | 'completed' | 'failed', required
    - `progress` integer, required — Approximate completion percentage for the generation task.
    - `created_at` integer, required — Unix timestamp (seconds) for when the job was created.
    - `completed_at` integer, nullable, required — Unix timestamp (seconds) for when the job completed, if finished.
    - `expires_at` integer, nullable, required — Unix timestamp (seconds) for when the downloadable assets expire, if set.
    - `prompt` string, nullable, required — The prompt that was used to generate the video.
    - `size` '720x1280' | '1280x720' | '1024x1792' | '1792x1024', required
    - `seconds` union, required — Duration of the generated clip in seconds. For extensions, this is the stitched total duration.
      - string
      - '4' | '8' | '12'
    - `remixed_from_video_id` string, nullable, required — Identifier of the source video if this video is a remix.
    - `error` Error2, required — An error that occurred while generating the response.
      - `code` string, required — A machine-readable error code that was returned.
      - `message` string, required — A human-readable description of the error that was returned.
  - `first_id` string, nullable, required — The ID of the first item in the list.
  - `last_id` string, nullable, required — The ID of the last item in the list.
  - `has_more` boolean, required — Whether there are more items available.

---

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