Videoslash API
Creative studioGeneratedModels

Kling O3

Creative Studio video model reference for the public API.

Kling O3

Public model ID: kling-o3

Asset type: video

Category: Video Generation

Starting credits: 5 (defaults: 11)

Prompt required.

Start a generation

curl -s -X POST "$API_BASE_URL/v1/creative-studio/generations" \
  -H "Authorization: Bearer vsl_YOUR_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "modelId": "kling-o3",
    "prompt": "Your prompt here",
    "start_image": ["https://example.com/reference.jpg"],
    "video_reference_type": "feature"
  }' | jq

Poll GET /v1/creative-studio/generations/{id} until status is completed. Completed generations return outputUrl on cdn.videoslash.com.

Media parameters

NameTypeConstraintsDefaultDescription
start_imagestringoptional · max items: 1—First frame image. Supports .jpg/.jpeg/.png, max 10MB, min 300px, aspect ratio 1:2.5 to 2.5:1.
end_imagestringoptional · max items: 1—Last frame image. Requires start_image. Supports .jpg/.jpeg/.png, max 10MB, min 300px.
reference_imagesarrayoptional · max items: 7—Reference images for elements, scenes, or styles. Supports .jpg/.jpeg/.png. Max 7 without video, 4 with video.
reference_videostringoptional · max items: 1—Reference video (.mp4/.mov). Duration 3-10s, resolution 720-2160px per side, max 200MB.

Settings parameters

NameTypeConstraintsDefaultDescription
video_reference_typeenumoptional · enum: feature, basefeatureHow to use reference video: 'feature' for style/camera reference, 'base' for video editing.
keep_original_soundbooleanoptionaltrueKeep original sound from reference video.
generate_audiobooleanoptionalfalseGenerate native audio. Mutually exclusive with reference video.
modeenumoptional · enum: standard, pro, 4kpro'standard' generates 720p, 'pro' generates 1080p, '4k' generates 4K. 4K does not support reference_video.
aspect_ratioenumoptional · enum: 16:9, 9:16, 1:116:9Aspect ratio. Required when not using start frame or video editing.
durationintegeroptional · min: 3 · max: 155Video duration in seconds (3-15). Ignored for video editing (base).
multi_promptstringoptional—JSON array of shot definitions for multi-shot mode. Each shot: {"prompt": "...", "duration": N}. Max 6 shots, min duration 1s per shot, total must equal duration. Example: [{"prompt":"A cat jumps","duration":3},{"prompt":"It lands","duration":2}]

On this page