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": ""
}' | jqPoll GET /v1/creative-studio/generations/{id} until status is completed. Completed generations return outputUrl on cdn.videoslash.com.
Media parameters
| Name | Type | Constraints | Default | Description |
|---|---|---|---|---|
start_image | string | optional · max items: 1 | — | First frame image. Supports .jpg/.jpeg/.png, max 10MB, min 300px, aspect ratio 1:2.5 to 2.5:1. |
end_image | string | optional · max items: 1 | — | Last frame image. Requires start_image. Supports .jpg/.jpeg/.png, max 10MB, min 300px. |
Settings parameters
| Name | Type | Constraints | Default | Description |
|---|---|---|---|---|
negative_prompt | string | optional | Things you do not want to see in the video. Max 2500 characters. | |
mode | enum | optional · enum: standard, pro, 4k | pro | 'standard' generates 720p, 'pro' generates 1080p, '4k' generates 4K. |
aspect_ratio | enum | optional · enum: 16:9, 9:16, 1:1 | 16:9 | Aspect ratio. Ignored when start_image is provided. |
duration | integer | optional · min: 3 · max: 15 | 5 | Video duration in seconds. |
generate_audio | boolean | optional | false | Generate native audio for the video. |
multi_prompt | string | optional | — | 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. |