Video

Kling 3.0 video

Kling 3.0 — Standard/Pro tiers. Text + image-to-video (start + end frame OR reference), multi-shot and @elements. 3–15s.

Category: Create · kling-3-0

How to use & limits

Capabilities

What this model supports, straight from the schema — no pricing, no infrastructure detail.

CapabilityValue
video_edit Video edit
multi_shots Multi-shotYes
multi_prompt Multi-promptYes
native_audio Native audioYes
text_to_video Text-to-videoYes
image_to_video Image-to-videoYes
kling_elements Multi-reference elementsYes
max_prompt_length Max prompt length2500
reference_to_video Reference-to-video
multi_prompt_supported Multi-promptYes

Parameters

Fields accepted in params (or first-class, where applicable) for POST /generations.

NameLabelTypeRequiredDefaultOptionsMin / MaxDescription
promptPrompttextareaOptionalScene description; up to 2,500 characters.
multi_shotsMulti-shotbooleanOptionalfalseEnables multi-shot storytelling; requires sound=true.
multi_promptPer-shot promptstextOptionalPer-shot prompts with durations; total ≤ 15s.
image_urlsImage referencesmulti_selectOptional— – 2Up to 2 images: start frame and end frame.
kling_elementsElementstextOptionalReusable elements cited as @name in the prompt.
soundSoundbooleanOptionaltrueEnables audio; must be true in multi-shot.
qualityQualityselectOptionalstandardstandard · pro · 4KTier: standard (~720p), pro (1080p) or 4K.
negative_promptNegative prompttextareaOptionalTerms to avoid in generation.
durationDurationnumberRequired53 – 15Duration in seconds, integer 3 to 15.
aspect_ratioAspect ratioselectOptional1:11:1 · 16:9 · 9:16Aspect ratio: 1:1, 16:9 or 9:16.

Example request

bash
curl -X POST https://caranguejo.art/api/v1/dev/generations \
  -H "Authorization: Bearer $CK" \
  -H "Content-Type: application/json" \
  -d '{
  "model": "kling-3-0",
  "prompt": "A dragon flies over a medieval city at dawn, wide cinematic shots.",
  "params": {
    "duration": 5,
    "sound": true,
    "aspect_ratio": "1:1",
    "quality": "standard"
  }
}'
javascript
const res = await fetch("https://caranguejo.art/api/v1/dev/generations", {
  method: "POST",
  headers: {
    "Authorization": "Bearer " + process.env.CK,
    "Content-Type": "application/json",
  },
  body: JSON.stringify({
    "model": "kling-3-0",
    "prompt": "A dragon flies over a medieval city at dawn, wide cinematic shots.",
    "params": {
      "duration": 5,
      "sound": true,
      "aspect_ratio": "1:1",
      "quality": "standard"
    }
  }),
});
const { data } = await res.json();

Example response

json
{
  "id": "9f0c1a7e-…",
  "object": "generation",
  "model": "kling-3-0",
  "type": "video",
  "status": "completed",
  "output": {
    "assets": [
      {
        "url": "https://media.caranguejo.art/outputs/example.mp4",
        "type": "video"
      }
    ]
  }
}
The job's real cost is returned as credits_charged on the completed response — check GET /balance for the account balance.

Common errors for this job type:

insufficient_creditsAccount balance can't cover the job cost.
content_policy_violationPrompt or media rejected by content policy.
generation_timeoutThe job exceeded the maximum processing time.
rate_limitedToo many requests per minute.
invalid_inputA required parameter is missing or outside the model's schema.
generation_failedGeneric processing failure.