Kling v2.6 Standard Motion Control transfers motion from reference videos to animate still images. Upload a character image and a motion clip, and the model extracts the movement to generate smooth video output.
Try in playground Test Kling v2.6 Motion Control in the Runpod Hub playground.
Endpoint https://api.runpod.ai/v2/kling-v2-6-std-motion-control/runsyncPricing $0.21–$0.63+ per video Type Video generation
Request
All parameters are passed within the input object in the request body.
URL of the character image to animate.
URL of the reference video containing the motion to transfer.
input.character_orientation
Source of character orientation. Options: video, image.
Text description of the desired motion.
Elements to exclude from the generated video.
input.keep_original_sound
Whether to preserve audio from the reference video.
curl -X POST "https://api.runpod.ai/v2/kling-v2-6-std-motion-control/runsync" \
-H "Authorization: Bearer $RUNPOD_API_KEY " \
-H "Content-Type: application/json" \
-d '{
"input": {
"image": "https://example.com/character.png",
"video": "https://example.com/dance-motion.mp4",
"character_orientation": "video",
"prompt": "Make the character follow the dance movements",
"keep_original_sound": true
}
}'
Response
Unique identifier for the request.
Request status. Returns COMPLETED on success, FAILED on error.
The generation result containing the video URL and cost. URL of the generated video. This URL expires after 7 days.
Cost of the generation in USD.
{
"id" : "sync-a1b2c3d4-e5f6-7890-abcd-ef1234567890-u1" ,
"status" : "COMPLETED" ,
"delayTime" : 25 ,
"executionTime" : 45678 ,
"output" : {
"video_url" : "https://video.runpod.ai/abc123/output.mp4" ,
"cost" : 0.42
}
}
Video URLs expire after 7 days. Download and store generated videos immediately if you need to keep them.
Cost calculation
Kling v2.6 Motion Control pricing by duration:
Duration Cost 1-3 seconds $0.21 4-6 seconds $0.42 7-9 seconds $0.63