Skip to main content
POST
/
wan2.6-i2v
/
async
Wan 2.6 I2V
curl --request POST \
  --url https://api.modellix.ai/api/v1/alibaba/wan2.6-i2v/async \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "img_url": "https://example.com/image.jpg"
}
'
{
  "code": 0,
  "message": "success",
  "data": {
    "status": "pending",
    "task_id": "task-abc123",
    "model_id": "model-123",
    "get_result": {
      "method": "GET",
      "url": "https://api.modellix.ai/api/v1/tasks/task-abc123"
    }
  }
}

Documentation Index

Fetch the complete documentation index at: https://docs.modellix.ai/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

API Key authentication. Format: Bearer YOUR_API_KEY.

Body

application/json
img_url
string
required

First frame image URL (supports HTTP/HTTPS/Base64)

Example:

"https://example.com/image.jpg"

prompt
string
Required string length: 1 - 800
negative_prompt
string
Maximum string length: 500
audio_url
string

Audio file URL for audio-driven video generation

Minimum string length: 1
Example:

"https://example.com/audio.mp3"

resolution
enum<string>
Available options:
480P,
720P,
1080P
duration
enum<integer>
default:5

Video duration in seconds (integer)

Available options:
2,
3,
4,
5,
6,
7,
8,
9,
10,
11,
12,
13,
14,
15
prompt_extend
boolean
default:false
shot_type
enum<string>

Camera shot type

Available options:
Close-up,
Medium,
Long,
Extra-Long
Example:

"Medium"

seed
integer
Required range: 0 <= x <= 2147483647

Response

200 - application/json

Task submitted successfully

code
integer
required

Response code, 0 indicates success

Example:

0

message
string
required

Response message

Example:

"success"

data
object
required