| Resolution | Enable audio | Price(USD) per second |
|---|---|---|
| 720 | false | 0.15 |
| 720 | true | 0.2 |
| 1080 | false | 0.2 |
| 1080 | true | 0.3 |
prompt and duration will be ignored{
"model": "kling",
"task_type": "omni_video_generation",
"input": {
"prompt": "Close-up, static camera, a woman in swim suit near the sea is introducing herself.",
"version": "3.0",
"resolution": "720p",
"duration": 3,
"aspect_ratio": "16:9",
"enable_audio": false
},
"config": {
"service_mode": "public",
"webhook_config": {
"endpoint": "https://webhook.site/5468eca8-1cad-4dd3-9799-b6fbd9770fda",
"secret": ""
}
}
}curl --location --request POST 'https://api.piapi.ai/api/v1/task' \
--header 'x-api-key;' \
--header 'Content-Type: application/json' \
--data-raw '{
"model": "kling",
"task_type": "omni_video_generation",
"input": {
"prompt": "Close-up, static camera, a woman in swim suit near the sea is introducing herself.",
"version": "3.0",
"resolution": "720p",
"duration": 3,
"aspect_ratio": "16:9",
"enable_audio": false
},
"config": {
"service_mode": "public",
"webhook_config": {
"endpoint": "https://webhook.site/5468eca8-1cad-4dd3-9799-b6fbd9770fda",
"secret": ""
}
}
}'{
"code": 200,
"data": {
"task_id": "5a9b4d8f-6f1c-460d-b295-ab1d663f9b90",
"model": "kling",
"task_type": "omni_video_generation",
"status": "pending",
"config": {
"service_mode": "public",
"webhook_config": {
"endpoint": "https://webhook.site/5468eca8-1cad-4dd3-9799-b6fbd9770fda",
"secret": ""
}
},
"input": {
"aspect_ratio": "16:9",
"enable_audio": true,
"multi_shots": [
{
"duration": 2,
"prompt": "a dog stands near sea"
},
{
"duration": 3,
"prompt": "the dog turns around and walks on beach"
}
],
"resolution": "720p",
"version": "3.0"
},
"output": {
"video": ""
},
"meta": {
"created_at": "2026-02-07T02:31:17.998381738Z",
"started_at": "0001-01-01T00:00:00Z",
"ended_at": "0001-01-01T00:00:00Z",
"usage": {
"type": "point",
"frozen": 10000000,
"consume": 0
},
"is_using_private_pool": false
},
"detail": null,
"logs": null,
"error": {
"code": 0,
"raw_message": "",
"message": "",
"detail": null
}
},
"message": "success"
}