Skip to main content

Documentation Index

Fetch the complete documentation index at: https://docs.unifically.com/llms.txt

Use this file to discover all available pages before exploring further.

Transfer motion from a reference video onto a character in a reference image.

Model

kuaishou/kling-2.6-motion-control

Parameters

ParameterTypeRequiredDefaultDescription
promptstringYes-Text prompt describing the motion to generate
image_urlstringYes-Character/subject image URL
video_urlstringYes-Motion reference video URL
modestringNo"std""std" (720p) or "pro" (1080p)
keep_audiobooleanNotruePreserve original audio from the motion reference video
character_orientationstringNo"video"Character orientation source: "video" (follow motion) or "image" (preserve pose)

Image Requirements

The reference image must show the subject’s head, shoulders, and torso clearly visible.

Example

curl -X POST https://api.unifically.com/v1/tasks \
  -H "Content-Type: application/json" \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -d '{
    "model": "kuaishou/kling-2.6-motion-control",
    "input": {
      "prompt": "Person dancing gracefully",
      "video_url": "https://example.com/dance-motion.mp4",
      "image_url": "https://example.com/person.jpg",
      "character_orientation": "video",
      "mode": "pro",
      "keep_audio": true
    }
  }'

Response

{
  "code": 200,
  "success": true,
  "data": {
    "task_id": "abc123def456",
    "status": "pending"
  }
}