Edit and transform videos using Kling v3.0 Omni Video Edit with support for reference images and elements.

Model

kuaishou/kling-3.0-omni-video-edit

Parameters

ParameterTypeRequiredDefaultDescription
video_urlstringYes-Video to reference or transform
promptstringYes-Text description
video_modestringNo"reference""reference" or "transform"
keep_audiobooleanNofalseKeep original video audio
modestringNo"std""std" or "pro"
aspect_ratiostringNo"16:9""16:9", "9:16", "1:1"
image_urlsstring[]No-Up to 4 reference image URLs
elementsElementInput[]No-Up to 4, IMAGE + VIDEO. Shared pool with image_urls
Note: Duration is locked to the input video length and cannot be set manually.

Elements

Elements are created automatically from your input, used during generation, then auto-deleted on completion.
"elements": [
  {"name": "Hero", "description": "Woman in red jacket", "image_urls": ["front.jpg", "side.jpg"]},
  {"name": "Actor", "description": "Man dancing", "video_url": "dance.mp4"}
]
Each element accepts:
  • name (required, max 15 chars)
  • description (required, max 100 chars)
  • image_urls (1–4 images) — for IMAGE element
  • video_url (1 mp4, 3–8s) — for VIDEO element
  • Exactly one of image_urls or video_url required
Reference in prompt as @element_1, @element_2, etc.

Example - Reference Mode

curl -X POST https://api.unifically.com/v1/tasks \
  -H "Content-Type: application/json" \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -d '{
    "model": "kuaishou/kling-3.0-omni-video-edit",
    "input": {
      "prompt": "Transform into anime style",
      "video_url": "https://example.com/video.mp4",
      "video_mode": "reference",
      "mode": "pro"
    }
  }'

Example - Transform Mode with Reference Images

curl -X POST https://api.unifically.com/v1/tasks \
  -H "Content-Type: application/json" \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -d '{
    "model": "kuaishou/kling-3.0-omni-video-edit",
    "input": {
      "prompt": "Replace the person with @image_1",
      "video_url": "https://example.com/video.mp4",
      "video_mode": "transform",
      "image_urls": ["https://example.com/person.jpg"],
      "mode": "pro"
    }
  }'

Response

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

Pricing

ModePrice
std (720p)$0.075/s
pro (1080p)$0.100/s