---
title: "Create a video remix"
method: POST
path: "/videos/{video_id}/remix"
tags: ["Videos"]
deprecated: true
---

# Create a video remix

`POST /videos/{video_id}/remix`

> **Deprecated.**

Create a remix of a completed video using a refreshed prompt.

## Path parameters

- `video_id` string, required

## Request body

- CreateVideoRemixBody — Parameters for remixing an existing generated video.
  - `prompt` string, required — Updated text prompt that directs the remix generation.

## Response `200`

Success

- VideoResource — Structured information describing a generated video job.
  - `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` string, required — Duration of the generated clip in seconds. For extensions, this is the stitched total duration.
  - `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.
    - `headers` object — The Retry-After and Retry-After-Ms headers returned with the original error, if any.
    - `misalignment` MisalignmentErrorDetailsResource
      - `error_type` union
        - string
        - 'potentially_unintended_data_transfer' | 'potentially_unintended_data_access' | 'potentially_unintended_destructive_activity' | 'other'
      - `detailed_explanation` string — The public explanation for this block.
      - `steer` MisalignmentSteer
        - `message` string, required — The public continuation instruction.

## Other responses

- `400` — The request or source video is not supported for remixing, or the organization does not support video generation.
- `404` — The source video or a referenced character was not found or is not accessible, the source video is not ready, or the Videos API is unavailable.
- `429` — The request was rejected because a rate limit was exceeded. A slow_down error means traffic increased too quickly; reduce your request rate, then increase it gradually.
- `500` — The source generation is unavailable or the remix task could not be created.
- `503` — The service is temporarily unavailable. A server_is_overloaded error means the requested model is temporarily overloaded; retry after a brief delay.

## Changes

- **2026-09-25** `d86203de41ae` — 3 info
  - added the non-success response with the status `400`
  - added the non-success response with the status `404`
  - added the non-success response with the status `500`
- **2026-09-22** `26bd6202a0ad` — 1 info
  - added the optional property `error/anyOf[subschema #1: Error]/headers` to the response with the `200` status
- **2026-09-08** `245c08912c1c` — 1 info
  - added the non-success response with the status `503`
- **2026-09-03** `9430b00d75b4` — 2 info
  - added the optional property `error/anyOf[subschema #1: Error]/misalignment` to the response with the `200` status
  - added the optional property `error/misalignment` to the response with the `429` status
- **2026-09-03** `5f6acbcbb919` — 1 info
  - added the non-success response with the status `429`

[Full history](https://skmtc.dev/openai/apis/openapi/changes/videos/:video_id/remix/post.md)

---

[API](https://skmtc.dev/openai/apis/openapi.md) · [All operations](https://skmtc.dev/openai/apis/openapi/llms.txt) · [OpenAPI document](https://skmtc.dev/openai/apis/openapi/revisions/d86203de41ae?raw)
