> ## Documentation Index
> Fetch the complete documentation index at: https://docs.unifically.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Kling 3.0 Turbo

> Generate videos with Kling 3.0 Turbo — a faster variant of Kling 3.0

Kling 3.0 Turbo is a faster variant of [Kling 3.0](/models/video/kling/kling-3.0) with a simplified feature set:

* Text-to-video generation (omit `start_frame_url`)
* Optional start-frame image-to-video (no end frame)
* Resolutions: 720p (`std`) and 1080p (`pro`)
* Aspect ratios: 1:1, 16:9, 9:16
* Duration: 3–15 seconds

**Not supported:** native audio, multi-shot, end frame, or 4K mode.

## Model

```
kuaishou/kling-3.0-turbo-video
```

## Parameters

| Parameter         | Type    | Required | Default  | Description                                                                |
| ----------------- | ------- | -------- | -------- | -------------------------------------------------------------------------- |
| `prompt`          | string  | **Yes**  | -        | Text prompt describing the video to generate                               |
| `mode`            | string  | No       | `"pro"`  | `"std"` (720p) or `"pro"` (1080p)                                          |
| `duration`        | integer | No       | `5`      | Video duration in seconds (3–15)                                           |
| `aspect_ratio`    | string  | No       | `"16:9"` | `"1:1"`, `"16:9"`, or `"9:16"`. Safe to omit — server defaults to `"16:9"` |
| `start_frame_url` | string  | No       | -        | First frame image URL. Omit for text-to-video                              |

***

## Examples

### Example 1: Text-to-Video

```bash theme={null}
curl -X POST https://api.unifically.com/v1/tasks \
  -H "Content-Type: application/json" \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -d '{
    "model": "kuaishou/kling-3.0-turbo-video",
    "input": {
      "prompt": "A cat walking in the rain",
      "mode": "pro",
      "duration": 15,
      "aspect_ratio": "16:9"
    }
  }'
```

### Example 2: Image-to-Video (Start Frame)

```bash theme={null}
curl -X POST https://api.unifically.com/v1/tasks \
  -H "Content-Type: application/json" \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -d '{
    "model": "kuaishou/kling-3.0-turbo-video",
    "input": {
      "prompt": "A cat walking in the rain",
      "start_frame_url": "https://example.com/cat.jpg",
      "mode": "pro",
      "duration": 15,
      "aspect_ratio": "16:9"
    }
  }'
```

## Response

```json theme={null}
{
  "code": 200,
  "success": true,
  "data": {
    "task_id": "abc123def456",
    "status": "processing"
  }
}
```
