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

# List all video objects

`GET /videos`

List all the video objects that are associated with the current workspace.

## Query parameters

- `title` string
- `tags[]` string[]
- `metadata` object
- `description` string
- `liveStreamId` string
- `sortBy` 'title' | 'createdAt' | 'publishedAt' | 'updatedAt'
- `sortOrder` 'asc' | 'desc'
- `currentPage` integer
- `pageSize` integer

## Response `200`

Success

- VideosListResponse
  - `data` Video[], required
    - `videoId` string, required — The unique identifier of the video object.
    - `createdAt` string, date-time — When a video was created, presented in ATOM UTC format.
    - `title` string — The title of the video content.
    - `description` string — A description for the video content.
    - `publishedAt` string, date-time — The date and time the API created the video. Date and time are provided using ATOM UTC format.
    - `updatedAt` string, date-time — The date and time the video was updated. Date and time are provided using ATOM UTC format.
    - `discardedAt` string, date-time, nullable — The date and time the video was discarded. The API populates this field only if you have the Video Restore feature enabled and discard a video. Date and time are provided using ATOM UTC format.
    - `deletesAt` string, date-time, nullable — The date and time the video will be permanently deleted. The API populates this field only if you have the Video Restore feature enabled and discard a video. Discarded videos are pemanently deleted after 90 days. Date and time are provided using ATOM UTC format.
    - `discarded` boolean — Returns `true` for videos you discarded when you have the Video Restore feature enabled. Returns `false` for every other video.
    - `language` string — Returns the language of a video in [IETF language tag](https://en.wikipedia.org/wiki/IETF_language_tag) format. You can set the language during video creation via the API, otherwise it is detected automatically.
    - `languageOrigin` 'api' | 'auto', nullable — Returns the origin of the last update on the video's `language` attribute. - `api` means that the last update was requested from the API. - `auto` means that the last update was done automatically by the API.
    - `tags` string[] — One array of tags (each tag is a string) in order to categorize a video. Tags may include spaces.
    - `metadata` Metadata[] — Metadata you can use to categorise and filter videos. Metadata is a list of dictionaries, where each dictionary represents a key value pair for categorising a video.
      - `key` string — The constant that defines the data set.
      - `value` string — A variable which belongs to the data set.
    - `source` VideoSource — Source information about the video.
      - `uri` string — The URL where the video is stored.
      - `type` string
      - `liveStream` VideoSourceLiveStream — This appears if the video is from a Live Record.
        - `liveStreamId` string — The unique identifier for the live stream.
        - `links` VideoSourceLiveStreamLink[]
          - `rel` string
          - `uri` string
    - `assets` VideoAssets — Collection of details about the video object that you can use to work with the video object.
      - `hls` string, uri — This is the manifest URL. For HTTP Live Streaming (HLS), when a HLS video stream is initiated, the first file to download is the manifest. This file has the extension M3U8, and provides the video player with information about the various bitrates available for streaming.
      - `iframe` string — Code to use video from a third party website
      - `player` string, uri — Raw url of the player.
      - `thumbnail` string, uri — Poster of the video.
      - `mp4` string, uri — Available only if mp4Support is enabled. Raw mp4 url.
    - `playerId` string — The id of the player that will be applied on the video.
    - `public` boolean — Defines if the content is publicly reachable or if a unique token is needed for each play session. Default is true. Tutorials on [private videos](https://api.video/blog/endpoints/private-videos/).
    - `panoramic` boolean — Defines if video is panoramic.
    - `mp4Support` boolean — This lets you know whether mp4 is supported. If enabled, an mp4 URL will be provided in the response for the video.
  - `pagination` Pagination, required
    - `itemsTotal` integer — Total number of items that exist.
    - `pagesTotal` integer — Number of items listed in the current page.
    - `pageSize` integer — Maximum number of item per page.
    - `currentPage` integer — The current page index.
    - `currentPageItems` integer — The number of items on the current page.
    - `links` PaginationLink[], required
      - `rel` string
      - `uri` string, uri

## Other responses

- `400` — Bad Request
- `429` — Too Many Requests

---

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