Model Centermingyan
Wan2.7 Editvideo
Model information
| Field | Value |
|---|---|
Model ID (model) | wan2.7-videoedit |
| Model name | Wan2.7 Editvideo |
| Model type | Video models |
Set the request model field to the Model ID shown above. Using the model name will fail to resolve the model. |
Authentication
Get KeyAll requests must include a Bearer token in the request headers:
cURL
Authorization: Bearer <API_KEY>
Request parameters
Send the following fields in the JSON request body.
model is required — use the Model ID from the Model information section above.promptstringrequiredPrompt
支持任何语言输入,长度不超过5000个非中文字符或2500个中文字符,超过部分会自动截断。
Minimum:1
reference_imagesimage[]Reference images
Canonical reference image inputs; image_urls/referenceImages/images are external or upstream aliases.
Range:0 – 4
Items:0 - 4
Provide a publicly accessible resource URL.
reference_videosvideo[]requiredReference videos
参考视频输入。参考视频最小3秒.
Range:1 – 1
Items:1 - 1
Provide a publicly accessible resource URL.
durationintegerDuration
视频生成时长参数不可以大于视频素材的时长
Range:2 – 10
aspect_ratiostringAspect ratio
Output aspect ratio.
Allowed values:
16:9, 9:16, 1:1, 3:4, 4:3Default:
16:9resolutionstringResolution
Output resolution tier.
Allowed values:
720P, 1080PDefault:
1080PseedintegerSeed
Deterministic generation seed.
Range:0 – 2147483647
watermarkbooleanWatermark
Whether to add provider or platform watermark.
Default:
falseResponse contract
Task status is normalized to
queued, processing, completed, or failed. Result URLs are returned only when status is completed;| Field | Description |
|---|---|
id | Task ID used to poll status and results. |
object | Resource type, usually video for this model. |
created | Task creation time as a Unix timestamp in seconds. |
model | Model name used for this request. |
status | queued, processing, completed, or failed. |
progress | Task progress, usually returned by the query API. |
result_url | Generic result URL, returned only after completion. |
video_url | Typed result URL for this resource, returned only after completion. |
amount | Credits consumed by this task. |
actualDuration | Duration used by this task. |
error | Error message on failure; usually null while queued, processing, or completed. |
Query task result
Generation tasks run asynchronously. The submit endpoint returns a task
id; poll the query endpoint below with that id until status becomes completed or failed.http
GET https://zcbservice.aizfw.cn/kyyReactApiServer/v2/model-center/tasks/{id}
Authorization: Bearer <API_KEY>
idstringrequiredThe task ID returned by the submit endpoint.
When
status is completed, the result URL is returned via result_url and video_url. See the Response contract above for the remaining fields.Poll every 5–10 seconds and stop once
status is completed or failed. Result URLs expire, so download and store them promptly.
