curl --request POST \
--url https://api.modellix.ai/api/v1/kling/kling-v1.6-t2v/async \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"prompt": "Ocean waves crashing on rocky shore at sunrise"
}
'
{
"code": 0,
"message": "success",
"data": {
"status": "pending",
"task_id": "task-def456",
"model_id": "model-123",
"get_result": {
"method": "GET",
"url": "https://api.modellix.ai/api/v1/tasks/task-def456"
}
}
}An improved text-to-video model with significantly better prompt adherence and visual quality over V1.5, supporting dual standard/professional generation modes.
POST
/
kling-v1.6-t2v
/
async
curl --request POST \
--url https://api.modellix.ai/api/v1/kling/kling-v1.6-t2v/async \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"prompt": "Ocean waves crashing on rocky shore at sunrise"
}
'
{
"code": 0,
"message": "success",
"data": {
"status": "pending",
"task_id": "task-def456",
"model_id": "model-123",
"get_result": {
"method": "GET",
"url": "https://api.modellix.ai/api/v1/tasks/task-def456"
}
}
}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
Video description text, supports Chinese and English
Required string length:
1 - 2500Example:
"Ocean waves crashing on rocky shore at sunrise"
Negative prompt describing undesired elements
Required string length:
1 - 2500Example:
"static, boring"
Prompt relevance (0.0-1.0). Only supported by V1 and V1.6.
Required range:
0 <= x <= 1Example:
0.6
Generation mode: std (standard) or pro (professional)
Available options:
std, pro Example:
"pro"
Video aspect ratio
Available options:
16:9, 9:16, 1:1 Example:
"9:16"
Video duration in seconds
Available options:
5, 10 Example:
10
⌘I