Videoslash API
Creative studioGeneratedModels

Kling 3.0

Creative Studio video model reference for the public API.

Kling 3.0

Public model ID: kling-30

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-30",
    "prompt": "Your prompt here",
    "start_image": ["https://example.com/reference.jpg"],
    "negative_prompt": ""
  }' | 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.

Settings parameters

NameTypeConstraintsDefaultDescription
negative_promptstringoptionalThings you do not want to see in the video. Max 2500 characters.
modeenumoptional · enum: standard, pro, 4kpro'standard' generates 720p, 'pro' generates 1080p, '4k' generates 4K.
aspect_ratioenumoptional · enum: 16:9, 9:16, 1:116:9Aspect ratio. Ignored when start_image is provided.
durationintegeroptional · min: 3 · max: 155Video duration in seconds.
generate_audiobooleanoptionalfalseGenerate native audio for the video.
multi_promptstringoptional—JSON array of shot definitions for multi-shot mode. Each shot: {"prompt": "...", "duration": N}. Max 6 shots, min 1s per shot, total must equal duration.

On this page