> ## 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.

# Kling Motion Control 2.6

> Transfer motion from reference videos onto characters

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

## Model

```
kuaishou/kling-2.6-motion-control
```

## Parameters

| Parameter               | Type    | Required | Default   | Description                                                                          |
| ----------------------- | ------- | -------- | --------- | ------------------------------------------------------------------------------------ |
| `prompt`                | string  | **Yes**  | -         | Text prompt describing the motion to generate                                        |
| `image_url`             | string  | **Yes**  | -         | Character/subject image URL                                                          |
| `video_url`             | string  | **Yes**  | -         | Motion reference video URL                                                           |
| `mode`                  | string  | No       | `"std"`   | `"std"` (720p) or `"pro"` (1080p)                                                    |
| `keep_audio`            | boolean | No       | `true`    | Preserve original audio from the motion reference video                              |
| `character_orientation` | string  | No       | `"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

```bash theme={null}
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

```json theme={null}
{
  "code": 200,
  "success": true,
  "data": {
    "task_id": "abc123def456",
    "status": "processing"
  }
}
```
