메인 콘텐츠로 건너뛰기
POST
/
v1
/
videos
/
generations
wan2.6-reference-video-flash API
curl --request POST \
  --url https://api.evolink.ai/v1/videos/generations \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "model": "wan2.6-reference-video-flash",
  "prompt": "A person dancing",
  "video_urls": [
    "https://help-static-aliyun-doc.aliyuncs.com/file-manage-files/xxx.mp4"
  ]
}
'
{
  "created": 1757169743,
  "id": "task-unified-1757169743-7cvnl5zw",
  "model": "wan2.6-reference-video-flash",
  "object": "video.generation.task",
  "progress": 0,
  "status": "pending",
  "task_info": {
    "can_cancel": true,
    "estimated_time": 120
  },
  "type": "video",
  "usage": {
    "billing_rule": "per_call",
    "credits_reserved": 5,
    "user_group": "default"
  }
}

인증

Authorization
string
header
필수

##All APIs require Bearer Token authentication##

Get API Key:

Visit API Key Management Page to get your API Key

Add to request header:

Authorization: Bearer YOUR_API_KEY

본문

application/json
model
enum<string>
기본값:wan2.6-reference-video-flash
필수

Model name

사용 가능한 옵션:
wan2.6-reference-video-flash
예시:

"wan2.6-reference-video-flash"

prompt
string
필수

Prompt describing the desired video, limited to 1500 characters

Maximum string length: 1500
예시:

"A person dancing"

video_urls
string<uri>[]
필수

Array of reference video file URLs. Used to reference character appearance and voice from videos to generate new videos.

URL requirements:

  • Supports HTTP or HTTPS protocol
  • Local files can be uploaded via Upload File to get temporary URL

Array limits:

  • Maximum 3 videos

Video requirements:

  • Format: mp4, mov
  • Duration: 2~30s
  • File size: single video not exceeding 100MB

Input video billing rules:

  • Each reference video is truncated separately then summed, total input billing duration cap is 5 seconds
  • 1 video: min(video duration, 5s)
  • 2 videos: min(video1 duration, 2.5s) + min(video2 duration, 2.5s)
  • 3 videos: min(video1 duration, 1.65s) + min(video2 duration, 1.65s) + min(video3 duration, 1.65s)
  • 1080p quality has higher pricing
Maximum array length: 3
예시:
[
"https://help-static-aliyun-doc.aliyuncs.com/file-manage-files/xxx.mp4"
]
aspect_ratio
string

Video aspect ratio, defaults to 16:9

Options:

  • 720p: Supports 16:9 (landscape), 9:16 (portrait), 1:1 (square), 4:3, 3:4
  • 1080p: Supports 16:9 (landscape), 9:16 (portrait), 1:1 (square), 4:3, 3:4
예시:

"16:9"

quality
string

Video quality, defaults to 720p

Options:

  • 720p: Standard quality, standard pricing, this is the default
  • 1080p: High quality, higher pricing

Note: Different qualities support different aspect ratios, see aspect_ratio parameter

예시:

"720p"

duration
integer

생성된 비디오의 길이를 지정합니다(초)

참고:

  • 2~10초 사이의 임의의 정수 값 지원
  • 각 요청은 duration 값에 따라 사전 청구되며, 실제 청구는 생성된 비디오 길이를 기준으로 합니다
필수 범위: 2 <= x <= 10
예시:

5

model_params
object

Model parameter configuration

generate_audio
boolean
기본값:true

Whether to generate audio, defaults to true

Options:

  • true: Generate video with audio, higher pricing
  • false: Generate video without audio, lower pricing
예시:

true

callback_url
string<uri>

HTTPS callback URL for task completion

Callback timing:

  • Triggered when task is completed, failed, or cancelled
  • Sent after billing confirmation is complete

Security restrictions:

  • Only HTTPS protocol supported
  • Cannot callback to internal IP addresses (127.0.0.1, 10.x.x.x, 172.16-31.x.x, 192.168.x.x, etc.)
  • URL length not exceeding 2048 characters

Callback mechanism:

  • Timeout: 10 seconds
  • Maximum 3 retries on failure (retries at 1/2/4 seconds after failure)
  • Callback response format is consistent with task query API response
  • Callback URL returning 2xx status code is considered successful, other status codes trigger retries
예시:

"https://your-domain.com/webhooks/video-task-completed"

응답

Video task created successfully

created
integer

Task creation timestamp

예시:

1757169743

id
string

Task ID

예시:

"task-unified-1757169743-7cvnl5zw"

model
string

Actual model name used

예시:

"wan2.6-reference-video-flash"

object
enum<string>

Specific task type

사용 가능한 옵션:
video.generation.task
progress
integer

Task progress percentage (0-100)

필수 범위: 0 <= x <= 100
예시:

0

status
enum<string>

Task status

사용 가능한 옵션:
pending,
processing,
completed,
failed
예시:

"pending"

task_info
object

Video task details

type
enum<string>

Task output type

사용 가능한 옵션:
text,
image,
audio,
video
예시:

"video"

usage
object

Usage and billing information