---
title: "Fetch video metadata"
method: GET
path: "/videos/{id}"
tags: ["Video"]
---

# Fetch video metadata

`GET /videos/{id}`

Fetch video metadata

## Path parameters

- `id` string, required — Identifier of video from create response.

## Response `200`

Success

- VideoJob — Structured information describing a generated video job.
  - `id` string, required — Unique identifier for the video job.
  - `object` 'video' — The object type, which is always video.
  - `model` string, required — The video generation model that produced the job.
  - `status` 'in_progress' | 'completed' | 'failed', required — Current lifecycle status of the video job.
  - `created_at` number, required — Unix timestamp (seconds) for when the job was created.
  - `completed_at` number — Unix timestamp (seconds) for when the job completed, if finished.
  - `size` string, required — The resolution of the generated video.
  - `seconds` string, required — Duration of the generated clip in seconds.
  - `error` object — Error payload that explains why generation failed, if applicable.
    - `code` string
    - `message` string, required
  - `outputs` object — Available upon completion, the outputs provides the cost charged and the hosted url to access the video
    - `cost` integer, required — The cost of generated video charged to the owners account.
    - `video_url` string, required — URL hosting the generated video

## Other responses

- `400` — Invalid request parameters.
- `404` — Video ID not found.

---

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