Video models
Kling 3.0 Turbo
On this page
Kling 3.0 Turbo — high-quality AI video generation.
| modelId | kling-v3-turbo-image-to-video, kling-v3-turbo-text-to-video |
| Modality | video |
| Pricing | See this model on the Pricing page for the current per-call price (with your markup). |
Operations
| Operation | modelId | Endpoint | Required input |
|---|---|---|---|
| V3 Turbo Image To Video | kling-v3-turbo-image-to-video | POST /api/v1/generate | prompt, image_urls, duration, resolution |
| V3 Turbo Text To Video | kling-v3-turbo-text-to-video | POST /api/v1/generate | prompt, duration, aspect_ratio, resolution |
| Poll task | — | GET /api/v1/task/{id}?model=kling-v3-turbo-image-to-video | — |
V3 Turbo Image To Video — kling-v3-turbo-image-to-video
| Field | Type | Required | Values / example |
|---|---|---|---|
| prompt | string | Yes | Text description for the video generation Max 2500 characters. (default: Animate the photo: slow push-in, hair and leaves moving in a gentle breeze, natural light shifting.) |
| image_urls | string[] | Yes | URL of the image to be used for the video (image URL) |
| duration | number | Yes | The duration of the generated video in seconds (range 3-15) (default: 5) |
| resolution | string | Yes | Resolution of the generated video (options: 720p | 1080p) (default: 720p) |
bash
curl -X POST https://you.bot/api/v1/generate \
-H "Authorization: Bearer $YOUBOT_API_KEY" \
-H "Content-Type: application/json" \
-d '{"modelId":"kling-v3-turbo-image-to-video","input":{"prompt":"A cinematic aerial shot of a coastal town at golden hour, gentle waves rolling onto the shore, warm light, slow camera push-in.","image_urls":["https://example.com/input.jpg"],"duration":5,"resolution":"720p"}}'V3 Turbo Text To Video — kling-v3-turbo-text-to-video
| Field | Type | Required | Values / example |
|---|---|---|---|
| prompt | string | Yes | The text description of the video you want to generate Max 2500 characters. (default: A slow-motion pour of amber whiskey over a single clear ice sphere in a heavy crystal tumbler, the camera drifting low across a dark walnut bar as warm backlight glints through the swirling liquid.) |
| duration | number | Yes | The duration of the generated video in seconds (range 3-15) (default: 5) |
| aspect_ratio | string | Yes | The aspect ratio of the generated video frame (options: 1:1 | 9:16 | 16:9) (default: 16:9) |
| resolution | string | Yes | Resolution of the generated video (options: 720p | 1080p) (default: 720p) |
bash
curl -X POST https://you.bot/api/v1/generate \
-H "Authorization: Bearer $YOUBOT_API_KEY" \
-H "Content-Type: application/json" \
-d '{"modelId":"kling-v3-turbo-text-to-video","input":{"prompt":"A cinematic aerial shot of a coastal town at golden hour, gentle waves rolling onto the shore, warm light, slow camera push-in.","duration":5,"aspect_ratio":"16:9","resolution":"720p"}}'