Video
Kling 2.6 Motion Control video
Character animation via motion transfer. 720p/1080p.
Category: Motion control · kling-2-6-motion-control
How to use & limits
- Motion transfer: 1 character image (image_urls) + 1 reference video (video_urls).
- The reference video must be 3 to 30 seconds.
- character_orientation=image keeps the photo orientation (output up to 10s); =video follows the video (up to 30s).
- resolution: 720p or 1080p.
- Optional prompt to control the scene; up to 2,500 characters.
Capabilities
What this model supports, straight from the schema — no pricing, no infrastructure detail.
| Capability | Value |
|---|---|
billing_unit Billing unit | per_second |
motion_control Motion control | Yes |
reference_image Reference image | Yes |
reference_video Reference video | Yes |
max_prompt_length Max prompt length | 2500 |
allowed_resolutions Allowed resolutions | 720p, 1080p |
Parameters
Fields accepted in params (or first-class, where applicable) for POST /generations.
| Name | Label | Type | Required | Default | Options | Min / Max | Description |
|---|---|---|---|---|---|---|---|
prompt | Prompt | textarea | Optional | — | — | — | Optional scene description; up to 2,500 characters. |
image_urls | Reference image (1) | multi_select | Required | — | — | — – 1 | Character image (1): head, shoulders and torso. |
video_urls | Reference video (1) | multi_select | Required | — | — | — – 1 | Motion reference video (1), 3 to 30 seconds. |
character_orientation | Orientação do personagem | select | Required | video | image · video | — | image (output up to 10s) or video (up to 30s). |
resolution | Resolution | select | Required | 1080p | 720p · 1080p | — | Resolution: 720p or 1080p. |
Example request
curl -X POST https://caranguejo.art/api/v1/dev/generations \
-H "Authorization: Bearer $CK" \
-H "Content-Type: application/json" \
-d '{
"model": "kling-2-6-motion-control",
"prompt": "The character dances on a lit stage with haze in the background.",
"params": {
"character_orientation": "video",
"resolution": "1080p",
"image_urls": [
"https://media.caranguejo.art/inputs/example.png"
]
}
}'
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-2-6-motion-control",
"prompt": "The character dances on a lit stage with haze in the background.",
"params": {
"character_orientation": "video",
"resolution": "1080p",
"image_urls": [
"https://media.caranguejo.art/inputs/example.png"
]
}
}),
});
const { data } = await res.json();
Example response
{
"id": "9f0c1a7e-…",
"object": "generation",
"model": "kling-2-6-motion-control",
"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. |