curl --request POST \
--url https://api.modellix.ai/api/v1/kling/kling-v1.6-i2v/async \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"image": "https://example.com/ocean.jpg"
}
'
{
"code": 0,
"message": "success",
"data": {
"status": "pending",
"task_id": "task-i2v003",
"model_id": "model-123",
"get_result": {
"method": "GET",
"url": "https://api.modellix.ai/api/v1/tasks/task-i2v003"
}
}
}An improved image-to-video model with significantly better prompt adherence and visual quality over V1.5, supporting first-and-last frame control for smooth transitions.
POST
/
kling-v1.6-i2v
/
async
curl --request POST \
--url https://api.modellix.ai/api/v1/kling/kling-v1.6-i2v/async \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"image": "https://example.com/ocean.jpg"
}
'
{
"code": 0,
"message": "success",
"data": {
"status": "pending",
"task_id": "task-i2v003",
"model_id": "model-123",
"get_result": {
"method": "GET",
"url": "https://api.modellix.ai/api/v1/tasks/task-i2v003"
}
}
}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
API Key authentication. Format: Bearer YOUR_API_KEY.
Body
application/json
Starting frame image URL or Base64
Example:
"https://example.com/image.jpg"
Ending frame image URL or Base64
Example:
"https://example.com/end.jpg"
Video generation prompt
Required string length:
1 - 2500Example:
"Waves crashing on shore"
Negative prompt
Required string length:
1 - 2500Example:
"calm, still"
Prompt relevance (0.0-1.0). Only supported by V1 and V1.6.
Required range:
0 <= x <= 1Example:
0.6
Generation mode: std or pro
Available options:
std, pro Example:
"pro"
Video duration in seconds
Available options:
5, 10 Example:
10
⌘I