Skip to main content
Kling 1.0 Text-to-Video is a text-to-video model in Kuaishou’s Kling series, available through the Starrise AI API. Create videos from text descriptions with custom camera control, multi-shot scenes, and optional sound effect generation.

Key Capabilities

  • Text-to-video — Generate video from text prompts alone
  • Camera control — Preset and custom camera movements (pan, tilt, zoom, roll)
  • Multi-shot scenes — Create up to 6 shots with custom prompts and durations
  • Sound effects — Optional synchronized sound effect generation (V2.6+ only)
  • Standard & Pro modes — Choose cost-effective standard mode or high-quality pro mode

Quick Example

curl https://ai.alad.com/kling/v1/videos/text2video \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "model_name": "kling-v1",
    "prompt": "A cat walking through a sunflower field under a golden sunset",
    "duration": "5",
    "mode": "std",
    "aspect_ratio": "16:9"
  }'

Parameters

ParameterTypeRequiredDescription
model_namestringNoMust be kling-v1
promptstringYesText prompt (up to 2500 characters)
negative_promptstringNoNegative prompt (up to 2500 characters)
modestringNostd or pro, default std
durationstringNo315 seconds, default 5
aspect_ratiostringNo16:9, 9:16, or 1:1, default 16:9
cfg_scalefloatNoPrompt adherence 01, default 0.5
multi_shotbooleanNoEnable multi-shot scene mode
soundstringNoon or off, default off (V2.6+ only)
camera_controlobjectNoCamera movement control
callback_urlstringNoTask status callback URL

API Reference

View the interactive API Playground for Kling 1.0 Text-to-Video.