Skip to main content
POST
/
v3
/
async
/
kling-v2.6-pro-motion-control
Kling V2.6 Pro Motion Control
curl --request POST \
  --url https://api.myrouter.ai/v3/async/kling-v2.6-pro-motion-control \
  --header 'Authorization: <authorization>' \
  --header 'Content-Type: <content-type>' \
  --data '
{
  "image": "<string>",
  "video": "<string>",
  "prompt": "<string>",
  "negative_prompt": "<string>",
  "keep_original_sound": true,
  "character_orientation": "<string>"
}
'
{
  "task_id": "<string>"
}
This is an async API that only returns the task_id of the async task.
This is an async API that only returns the task_id of the async task. Use the task_id to call the Get Async Task Result API to retrieve the generated result.

Request Headers

Content-Type
string
required
Enum: application/json
Authorization
string
required
Bearer authentication format: Bearer {{API Key}}.

Request Body

image
string
required
Reference image URL or base64-encoded image. Supports .jpg, .jpeg, .png. File size must not exceed 10MB. Width and height must be >= 300px. Aspect ratio must be between 1:2.5 and 2.5:1.
video
string
required
Reference motion video URL. Supports .mp4, .mov. File size must not exceed 10MB. Width and height must be >= 300px. Duration: 3-30 seconds.
prompt
string
Positive prompt for scene description, style, lighting, etc.
negative_prompt
string
Negative prompt. Maximum 2500 characters.
keep_original_sound
boolean
default:true
Whether to keep the original audio from the reference video.
character_orientation
string
required
Output frame mode:
  • image: matches the framing of the reference image (outputs 5 seconds)
  • video: matches the framing of the reference video (up to 30 seconds)
Possible values: image, video

Response

task_id
string
required
Use the task_id to call the Get Async Task Result API to retrieve the generated output.