Video
Kling 3.0 Turbo video
Kling 3.0 Turbo — otimizado para velocidade. Tiers Standard (720p) / Pro (1080p). Texto e imagem-para-vídeo (primeiro frame), multi-shot até 6 cenas. 3–15s.
Category: Create · kling-3-0-turbo
How to use & limits
- Automatic routing: with image_urls it becomes image-to-video (image_urls[0] = first frame); without, text-to-video.
- prompt: up to 2,500 characters; duration integer 3 to 15 seconds (default 5).
- quality: standard (720p) or pro (1080p).
- multi_shots + multi_prompt allow up to 6 shots (total ≤ 15s).
- aspect_ratio (text-to-video): 1:1, 16:9 or 9:16.
- sound enables audio; optional negative_prompt.
Capabilities
What this model supports, straight from the schema — no pricing, no infrastructure detail.
| Capability | Value |
|---|---|
video_edit Video edit | — |
multi_shots Multi-shot | Yes |
multi_prompt Multi-prompt | Yes |
native_audio Native audio | Yes |
text_to_video Text-to-video | Yes |
image_to_video Image-to-video | Yes |
kling_elements Multi-reference elements | — |
max_prompt_length Max prompt length | 2500 |
reference_to_video Reference-to-video | — |
multi_prompt_supported Multi-prompt | Yes |
Parameters
Fields accepted in params (or first-class, where applicable) for POST /generations.
| Name | Label | Type | Required | Default | Options | Min / Max | Description |
|---|---|---|---|---|---|---|---|
multi_shots | Multi-shot | boolean | Optional | false | — | — | Enables multi-shot storytelling. |
prompt | Prompt | textarea | Optional | — | — | — | Scene description; up to 2,500 characters. |
multi_prompt | Per-shot prompts | text | Optional | — | — | — | Per-shot prompts (up to 6) with durations; total ≤ 15s. |
image_urls | Image references | multi_select | Optional | — | — | — – 1 | First frame for image-to-video (max 1). |
sound | Sound | boolean | Optional | true | — | — | Enables audio. |
aspect_ratio | Aspect ratio | select | Optional | 1:1 | 1:1 · 16:9 · 9:16 | — | Aspect ratio (text-to-video): 1:1, 16:9 or 9:16. |
quality | Quality | select | Optional | standard | standard · pro | — | Tier: standard (720p) or pro (1080p). |
negative_prompt | Negative prompt | textarea | Optional | — | — | — | Terms to avoid in generation. |
duration | Duration | number | Required | 5 | — | 3 – 15 | Duration in seconds, integer 3 to 15 (default 5). |
Example request
curl -X POST https://caranguejo.art/api/v1/dev/generations \
-H "Authorization: Bearer $CK" \
-H "Content-Type: application/json" \
-d '{
"model": "kling-3-0-turbo",
"prompt": "Camera glides through a vibrant street market at dusk, lights turning on.",
"params": {
"duration": 5,
"aspect_ratio": "16:9",
"quality": "standard"
}
}'
const res = await fetch("https://caranguejo.art/api/v1/dev/generations", {
method: "POST",
headers: {
"Authorization": "Bearer " + process.env.CK,
"Content-Type": "application/json",
},
body: JSON.stringify({
"model": "kling-3-0-turbo",
"prompt": "Camera glides through a vibrant street market at dusk, lights turning on.",
"params": {
"duration": 5,
"aspect_ratio": "16:9",
"quality": "standard"
}
}),
});
const { data } = await res.json();
Example response
{
"id": "9f0c1a7e-…",
"object": "generation",
"model": "kling-3-0-turbo",
"type": "video",
"status": "completed",
"output": {
"assets": [
{
"url": "https://media.caranguejo.art/outputs/example.mp4",
"type": "video"
}
]
}
}
The job's real cost is returned as credits_charged on the completed response — check GET /balance for the account balance.
Common errors for this job type:
insufficient_credits | Account balance can't cover the job cost. |
content_policy_violation | Prompt or media rejected by content policy. |
generation_timeout | The job exceeded the maximum processing time. |
rate_limited | Too many requests per minute. |
invalid_input | A required parameter is missing or outside the model's schema. |
generation_failed | Generic processing failure. |