Video Edit: create an edit task from video + reference images + instruction
curl --request POST \
--url https://api.apiyi.com/wan/api/v1/services/aigc/video-generation/video-synthesis \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--header 'X-DashScope-Async: <x-dashscope-async>' \
--data '
{
"model": "happyhorse-1.0-video-edit",
"input": {
"prompt": "Replace the clothes of the girl in the video with the clothes in the image",
"media": [
{
"type": "video",
"url": "https://your-cdn.com/source.mp4"
},
{
"type": "reference_image",
"url": "https://your-cdn.com/new-clothes.png"
}
]
}
}
'{
"output": {
"task_id": "hh-...",
"task_status": "PENDING"
},
"request_id": "..."
}HappyHorse1.0 Video Generation (Alibaba)
HappyHorse Video Edit API Reference
HappyHorse-1.0-video-edit Video Edit API reference and online debugging: input video + up to 5 reference images + natural-language instructions for local/global edits.
POST
/
wan
/
api
/
v1
/
services
/
aigc
/
video-generation
/
video-synthesis
Video Edit: create an edit task from video + reference images + instruction
curl --request POST \
--url https://api.apiyi.com/wan/api/v1/services/aigc/video-generation/video-synthesis \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--header 'X-DashScope-Async: <x-dashscope-async>' \
--data '
{
"model": "happyhorse-1.0-video-edit",
"input": {
"prompt": "Replace the clothes of the girl in the video with the clothes in the image",
"media": [
{
"type": "video",
"url": "https://your-cdn.com/source.mp4"
},
{
"type": "reference_image",
"url": "https://your-cdn.com/new-clothes.png"
}
]
}
}
'{
"output": {
"task_id": "hh-...",
"task_status": "PENDING"
},
"request_id": "..."
}Documentation Index
Fetch the complete documentation index at: https://docs.apiyi.com/llms.txt
Use this file to discover all available pages before exploring further.
You can debug directly in the Playground on the right: fill in Authorization with
Bearer sk-your-api-key, set model / input.media / parameters, then send the request. A successful submission returns a task_id; see below for polling and downloading.This page covers the create endpoint for
happyhorse-1.0-video-edit (Video Edit): provide a video + up to 5 reference images + natural-language instructions to make local/global edits to video elements. Note that the model name has a hyphen (video-edit). For the complete async flow, see the HappyHorse Overview.input.mediamust include both avideo(the video being edited) and at least 1reference_image(≤5).- The model name is
happyhorse-1.0-video-edit(has a hyphen), different from Wan’swan2.7-videoedit(no hyphen) — don’t get it wrong. - The create request goes to
/wan/api/v1/...withX-DashScope-Async: enable; do not use/v1/videos.
Code Examples
curl -X POST "https://api.apiyi.com/wan/api/v1/services/aigc/video-generation/video-synthesis" \
-H "X-DashScope-Async: enable" \
-H "Authorization: Bearer sk-your-api-key" \
-H "Content-Type: application/json" \
-d '{
"model": "happyhorse-1.0-video-edit",
"input": {
"prompt": "Replace the clothes of the girl in the video with the clothes in the image",
"media": [
{"type": "video", "url": "https://your-cdn.com/source.mp4"},
{"type": "reference_image", "url": "https://your-cdn.com/new-clothes.png"}
]
},
"parameters": {"resolution": "720P", "prompt_extend": true, "watermark": true}
}'
Parameter and Media Quick Reference
| Parameter | Type | Required | Default | Notes |
|---|---|---|---|---|
model | string | ✓ | — | Fixed to happyhorse-1.0-video-edit |
input.prompt | string | ✓ | — | Natural-language editing instruction |
input.media | array | ✓ | — | See the media table below |
parameters.resolution | string | 720P | 720P / 1080P | |
parameters.prompt_extend | bool | true | Smart rewriting | |
parameters.watermark | bool | false | ”AI Generated” watermark |
media[] Values
type | Required | Count | Notes |
|---|---|---|---|
video | ✓ | 1 | The source video being edited |
reference_image | ✓ | 1–5 | Reference material (new clothing, new background, etc.) |
The output duration of video editing follows the input video and is not determined by
duration, so this capability typically does not pass duration.Response Format
{
"output": { "task_id": "...", "task_status": "PENDING" },
"request_id": "..."
}
After submission, poll
GET /v1/tasks/{task_id} until completed, then download the mp4 from result_url (without the Authorization header, expires in 24 hours). See the full polling loop in HappyHorse Overview · Async Call Flow.Authorizations
The API Key obtained from the APIYI Console
Headers
Async processing switch, must be set to enable
Available options:
enable Body
application/json
Was this page helpful?
⌘I