---
title: "Video Remix"
method: POST
path: "/v1/videos/{video_id}/remix"
tags: ["videos"]
---

# Video Remix

`POST /v1/videos/{video_id}/remix`

Video remix endpoint for remixing existing videos with new prompts.

Follows the OpenAI Videos API spec:
https://platform.openai.com/docs/api-reference/videos

Example:
```bash
curl -X POST "http://localhost:4000/v1/videos/video_123/remix"         -H "Authorization: Bearer sk-1234"         -H "Content-Type: application/json"         -d '{
        "prompt": "A new version with different colors"
    }'
```

## Path parameters

- `video_id` string, required

## Response `200`

Successful Response

- unknown

## Other responses

- `422` — Validation Error

---

[API](https://skmtc.net/sea-lion/apis/litellm-api.md) · [All operations](https://skmtc.net/sea-lion/apis/litellm-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/sea-lion/litellm-api/revisions/79928a3d37d3/schema)
