Kling 2.6 Motion Control
Try Kling 2.6 Motion Control in a live playground. Upload reference videos, control motion strength, and preview results before scaling with the API.
Kling 2.6 Motion Control Pricing
Pay-as-you-go access through PiAPI.
Kling 2.6 Motion Control Standard2.6 · Standard
$0.065
- Standard mode, billed per second of output video.
Kling 2.6 Motion Control Pro2.6 · Pro
$0.104
- Professional mode, billed per second of output video.
Kling 3.0 Motion Control Standard3.0 · Standard
$0.195
- Standard mode, billed per second of output video.
Kling 3.0 Motion Control Pro3.0 · Pro
$0.26
- Professional mode, billed per second of output video.
Kling 2.6 Motion Control Features
Capabilities from the production model page.
Full-Body Motion Synchronisation
Kling AI motion control excels in full-body motion synchronisation from motion reference, delivering high-quality motion control AI videos.
Masterful Orchestration of Complex Motions
Kling 2.6 Motion Control is designed for complex motion generation, from dynamic dance moves to intricate camera choreography.
Precision in Hand Performances
Kling AI 2.6 Motion Control delivers high-quality performances in the generation of detailed hand motion and gestures.
Precise Generation and Control
Kling 2.6 Motion Control produces high-quality motion control generation through sharp prompt adherence and controllable motion parameters.
30s One-Shot Action
Generate motion-controlled videos up to 30 seconds, enabling long-form, continuous motion sequences in a single shot.
Flexible Reference Workflows
Combine reference image and reference video to lock in character appearance while driving motion from curated video clip.
Get started
Create your API key
Sign up and grab an API key from the PiAPI workspace — free credits are included on sign-up.
Top up credits
Add credits on the billing page when you are ready to scale beyond the free tier.
Call the API
POST your first task following the API docs, then poll the task until the result is ready.
Iterate in the playground
Prototype prompts and settings in the the playground above before wiring them into your product.
curl -X POST 'https://api.piapi.ai/api/v1/task' \
-H 'X-API-Key: YOUR_API_KEY' \
-H 'Content-Type: application/json' \
-d '{
"model": "kling",
"task_type": "motion_control",
"input": {
"version": "2.6",
"mode": "std",
"motion_direction": "video",
"keep_original_sound": false,
"image_url": "YOUR_IMAGE_URL",
"video_url": "YOUR_VIDEO_URL"
}
}'
# → { "task_id": "9d5a…", "status": "pending" }curl 'https://api.piapi.ai/api/v1/task/{task_id}' \
-H 'X-API-Key: YOUR_API_KEY'
# poll until status = completed
{
"data": {
"status": "completed",
"output": {
"video_url": "https://img.theapi.app/ephemeral/…"
}
}
}$ npm install -g piapi-cli $ piapi run kling-2-6-motion-control \ version=2.6 \ mode=std \ motion_direction=video \ keep_original_sound=false \ image_url=YOUR_IMAGE_URL \ video_url=YOUR_VIDEO_URL ✓ Task completed! https://img.theapi.app/ephemeral/…
