---
title: KlingAI 1.0 Standard | Runware Docs
url: https://runware.ai/docs/models/klingai-1-0-standard
description: Standard KlingAI 1.0 text to video at 1080p
---
# KlingAI 1.0 Standard

KlingAI 1.0 Standard generates 1080p video from text prompts with basic motion control. It targets general use cases that need up to 2 minute clips with stable output and lower cost than premium tiers. Suitable for rapid prototyping and bulk content workflows.

- **ID**: `klingai:1@1`
- **Status**: live
- **Creator**: Kling AI
- **Release Date**: June 10, 2024
- **Capabilities**: Text to Video

## Compatibility & Validation

`width` and `height` must be used together.

---

The following dimension combinations are supported:

| Configuration | Dimensions |
| --- | --- |
| `720p (16:9)` | `1280x720` |
| `720p (1:1)` | `720x720` |
| `720p (9:16)` | `720x1280` |

## Request Parameters

**API Options**

Platform-level options for task execution and delivery.

### [taskType](https://runware.ai/docs/models/klingai-1-0-standard#request-tasktype)

- **Type**: `string`
- **Required**: true
- **Value**: `videoInference`

Identifier for the type of task being performed

### [taskUUID](https://runware.ai/docs/models/klingai-1-0-standard#request-taskuuid)

- **Type**: `string`
- **Required**: true
- **Format**: `UUID v4`

UUID v4 identifier for tracking tasks and matching async responses. Must be unique per task.

### [outputType](https://runware.ai/docs/models/klingai-1-0-standard#request-outputtype)

- **Type**: `string`
- **Default**: `URL`

Video output type.

**Allowed values**: `URL`

### [outputFormat](https://runware.ai/docs/models/klingai-1-0-standard#request-outputformat)

- **Type**: `string`
- **Default**: `MP4`

Specifies the file format of the generated output. The available values depend on the task type and the specific model's capabilities.

- \`MP4\`: Widely supported video container (H.264), recommended for general use.
- \`WEBM\`: Optimized for web delivery.
- \`MOV\`: QuickTime format, common in professional workflows (Apple ecosystem).

**Allowed values**: `MP4` `WEBM` `MOV`

### [outputQuality](https://runware.ai/docs/models/klingai-1-0-standard#request-outputquality)

- **Type**: `integer`
- **Min**: `20`
- **Max**: `99`
- **Default**: `95`

Compression quality of the output. Higher values preserve quality but increase file size.

### [webhookURL](https://runware.ai/docs/models/klingai-1-0-standard#request-webhookurl)

- **Type**: `string`
- **Format**: `URI`

Specifies a webhook URL where JSON responses will be sent via HTTP POST when generation tasks complete. For batch requests with multiple results, each completed item triggers a separate webhook call as it becomes available.

**Learn more** (1 resource):

- [Webhooks](https://runware.ai/docs/platform/webhooks) (platform)

### [deliveryMethod](https://runware.ai/docs/models/klingai-1-0-standard#request-deliverymethod)

- **Type**: `string`
- **Default**: `async`

Determines how the API delivers task results.

**Allowed values**:

- `async` Returns an immediate acknowledgment with the task UUID. Poll for results using getResponse. Required for long-running tasks like video generation.

**Learn more** (1 resource):

- [Task Polling](https://runware.ai/docs/platform/task-polling) (platform)

### [uploadEndpoint](https://runware.ai/docs/models/klingai-1-0-standard#request-uploadendpoint)

- **Type**: `string`
- **Format**: `URI`

Specifies a URL where the generated content will be automatically uploaded using the HTTP PUT method. The raw binary data of the media file is sent directly as the request body. For secure uploads to cloud storage, use presigned URLs that include temporary authentication credentials.

**Common use cases:**

- **Cloud storage**: Upload directly to S3 buckets, Google Cloud Storage, or Azure Blob Storage using presigned URLs.
- **CDN integration**: Upload to content delivery networks for immediate distribution.

```text
// S3 presigned URL for secure upload
https://your-bucket.s3.amazonaws.com/generated/content.mp4?X-Amz-Signature=abc123&X-Amz-Expires=3600

// Google Cloud Storage presigned URL
https://storage.googleapis.com/your-bucket/content.jpg?X-Goog-Signature=xyz789

// Custom storage endpoint
https://storage.example.com/uploads/generated-image.jpg
```

The content data will be sent as the request body to the specified URL when generation is complete.

### [safety](https://runware.ai/docs/models/klingai-1-0-standard#request-safety)

- **Path**: `safety.checkContent`
- **Type**: `object (2 properties)`

Content safety checking configuration for video generation.

#### [checkContent](https://runware.ai/docs/models/klingai-1-0-standard#request-safety-checkcontent)

- **Path**: `safety.checkContent`
- **Type**: `boolean`
- **Default**: `false`

Enable or disable content safety checking. When enabled, defaults to `fast` mode.

#### [mode](https://runware.ai/docs/models/klingai-1-0-standard#request-safety-mode)

- **Path**: `safety.mode`
- **Type**: `string`
- **Default**: `none`

Safety checking mode for video generation.

**Allowed values**:

- `none` Disables checking.
- `fast` Checks key frames.
- `full` Checks all frames.

### [ttl](https://runware.ai/docs/models/klingai-1-0-standard#request-ttl)

- **Type**: `integer`
- **Min**: `60`

Time-to-live (TTL) in seconds for generated content. Only applies when `outputType` is `URL`.

### [includeCost](https://runware.ai/docs/models/klingai-1-0-standard#request-includecost)

- **Type**: `boolean`
- **Default**: `false`

Include task cost in the response.

### [numberResults](https://runware.ai/docs/models/klingai-1-0-standard#request-numberresults)

- **Type**: `integer`
- **Min**: `1`
- **Max**: `4`
- **Default**: `1`

Number of results to generate. Each result uses a different seed, producing variations of the same parameters.

**Inputs**

Input resources for the task (images, audio, etc). These must be nested inside the \`inputs\` object.

### [frameImages](https://runware.ai/docs/models/klingai-1-0-standard#request-inputs-frameimages)

- **Path**: `inputs.frameImages`
- **Type**: `array of strings or objects`

An array of frame-specific image inputs to guide video generation. Each item can be either a plain image input (UUID, URL, Data URI, or Base64) or an object that pairs an image with a target frame position.

The `frameImages` parameter allows you to constrain specific frames within the video sequence, ensuring that particular visual content appears at designated points. This is different from `referenceImages`, which provide overall visual guidance without constraining specific timeline positions.

When the `frame` parameter is omitted, automatic distribution rules apply:

- **1 image**: Used as the first frame.
- **2 images**: First and last frames.

**Examples**:

**Shorthand format:** When you don't need to specify a frame position, you can pass a plain image input directly.

```json
"frameImages": [
  "aac49721-1964-481a-ae78-8a4e29b91402"
]
```

**Object format:** When you need to specify a frame position, use an object with `image` and `frame`.

```json
"frameImages": [
  {
    "image": "aac49721-1964-481a-ae78-8a4e29b91402",
    "frame": "first"
  }
]
```

**First and last frames:** With two images, they automatically become the first and last frames of the video sequence. You can mix shorthand and object formats.

```json
"frameImages": [
  "aac49721-1964-481a-ae78-8a4e29b91402",
  {
    "image": "3ad204c3-a9de-4963-8a1a-c3911e3afafe",
    "frame": "last"
  }
]
```

**Format 1: string[]**:

- **Type**: `string`

Image input (UUID, URL, Data URI, or Base64).

**Format 2: object[]**:

#### [image](https://runware.ai/docs/models/klingai-1-0-standard#request-inputs-frameimages-format-2-image)

- **Path**: `inputs.frameImages.image`
- **Type**: `string`
- **Required**: true

Image input (UUID, URL, Data URI, or Base64).

#### [frame](https://runware.ai/docs/models/klingai-1-0-standard#request-inputs-frameimages-format-2-frame)

- **Path**: `inputs.frameImages.frame`
- **Type**: `object`

Target frame position for the image. Supports first and last frame.

**Allowed values**:

- `first` First frame of the video.
- `last` Last frame of the video.
- `0` Frame index 0 (first frame).
- `-1` Frame index -1 (last frame).

**Generation Parameters**

Core parameters for controlling the generated content.

### [model](https://runware.ai/docs/models/klingai-1-0-standard#request-model)

- **Type**: `string`
- **Required**: true
- **Value**: `klingai:1@1`

Identifier of the model to use for generation.

**Learn more** (3 resources):

- [Text To Image: Model Selection The Foundation Of Generation](https://runware.ai/docs/guides/text-to-image#model-selection-the-foundation-of-generation) (guide)
- [Image Inpainting: Model Specialized Inpainting Models](https://runware.ai/docs/guides/image-inpainting#model-specialized-inpainting-models) (guide)
- [Image Outpainting: Other Critical Parameters](https://runware.ai/docs/guides/image-outpainting#other-critical-parameters) (guide)

### [positivePrompt](https://runware.ai/docs/models/klingai-1-0-standard#request-positiveprompt)

- **Type**: `string`
- **Required**: true
- **Min**: `2`
- **Max**: `2500`

Text prompt describing elements to include in the generated output.

**Learn more** (2 resources):

- [Text To Image: Prompts Guiding The Generation](https://runware.ai/docs/guides/text-to-image#prompts-guiding-the-generation) (guide)
- [Image Outpainting: Other Critical Parameters](https://runware.ai/docs/guides/image-outpainting#other-critical-parameters) (guide)

### [negativePrompt](https://runware.ai/docs/models/klingai-1-0-standard#request-negativeprompt)

- **Type**: `string`
- **Min**: `2`
- **Max**: `2500`

Prompt to guide what to exclude from generation. Ignored when guidance is disabled (CFGScale ≤ 1).

**Learn more** (1 resource):

- [Text To Image: Prompts Guiding The Generation](https://runware.ai/docs/guides/text-to-image#prompts-guiding-the-generation) (guide)

### [width](https://runware.ai/docs/models/klingai-1-0-standard#request-width)

- **Type**: `integer`
- **Paired with**: height

Width of the generated media in pixels.

**Learn more** (2 resources):

- [Image To Image: Dimensions Changing Aspect Ratio](https://runware.ai/docs/guides/image-to-image#dimensions-changing-aspect-ratio) (guide)
- [Image Outpainting: Dimensions Critical For Outpainting](https://runware.ai/docs/guides/image-outpainting#dimensions-critical-for-outpainting) (guide)

### [height](https://runware.ai/docs/models/klingai-1-0-standard#request-height)

- **Type**: `integer`
- **Paired with**: width

Height of the generated media in pixels.

**Learn more** (2 resources):

- [Image To Image: Dimensions Changing Aspect Ratio](https://runware.ai/docs/guides/image-to-image#dimensions-changing-aspect-ratio) (guide)
- [Image Outpainting: Dimensions Critical For Outpainting](https://runware.ai/docs/guides/image-outpainting#dimensions-critical-for-outpainting) (guide)

### [duration](https://runware.ai/docs/models/klingai-1-0-standard#request-duration)

- **Type**: `float`
- **Default**: `5`

Length of the generated video in seconds. The total number of frames produced is determined by duration multiplied by the model's frame rate (fps).

**Allowed values**: `5` `10`

### [CFGScale](https://runware.ai/docs/models/klingai-1-0-standard#request-cfgscale)

- **Type**: `float`
- **Min**: `0`
- **Max**: `1`
- **Step**: `0.01`
- **Default**: `0.5`

Guidance scale representing how closely the output will resemble the prompt. Higher values produce results more aligned with the prompt.

**Learn more** (1 resource):

- [Text To Image: Cfg Scale Balancing Creativity And Control](https://runware.ai/docs/guides/text-to-image#cfg-scale-balancing-creativity-and-control) (guide)

## Response Parameters

### [taskType](https://runware.ai/docs/models/klingai-1-0-standard#response-tasktype)

- **Type**: `string`
- **Required**: true
- **Value**: `videoInference`

Type of the task.

### [taskUUID](https://runware.ai/docs/models/klingai-1-0-standard#response-taskuuid)

- **Type**: `string`
- **Required**: true
- **Format**: `UUID v4`

UUID of the task.

### [videoUUID](https://runware.ai/docs/models/klingai-1-0-standard#response-videouuid)

- **Type**: `string`
- **Required**: true
- **Format**: `UUID v4`

UUID of the output video.

### [videoURL](https://runware.ai/docs/models/klingai-1-0-standard#response-videourl)

- **Type**: `string`
- **Format**: `URI`

URL of the output video.

### [videoBase64Data](https://runware.ai/docs/models/klingai-1-0-standard#response-videobase64data)

- **Type**: `string`

Base64-encoded video data.

### [videoDataURI](https://runware.ai/docs/models/klingai-1-0-standard#response-videodatauri)

- **Type**: `string`
- **Format**: `URI`

Data URI of the output video.

### [seed](https://runware.ai/docs/models/klingai-1-0-standard#response-seed)

- **Type**: `integer`

The seed used for generation. If none was provided, shows the randomly generated seed.

### [NSFWContent](https://runware.ai/docs/models/klingai-1-0-standard#response-nsfwcontent)

- **Type**: `boolean`

Flag indicating if NSFW content was detected.

### [cost](https://runware.ai/docs/models/klingai-1-0-standard#response-cost)

- **Type**: `float`

Task cost in USD. Present when `includeCost` is set to `true` in the request.

## Examples

### Rainy Monorail Terminal Departure (Text to Video)

[Watch video](https://assets.runware.ai/examples/klingai-1-0-standard/f84dd648-b740-4c8f-bf58-40f9cdd4242c.mp4)

**Request**:

```json
{
  "taskType": "videoInference",
  "taskUUID": "da1fafe8-a59c-4e7b-b0e6-1d339acd7aec",
  "model": "klingai:1@1",
  "positivePrompt": "A cinematic wide shot inside a sprawling futuristic monorail terminal during a heavy evening rainstorm. Travelers in sleek rain capes and tailored streetwear wait beneath towering glass canopies while a silver magnetic train glides into the station, spraying mist and reflecting amber platform lights. The camera slowly dollies forward through puddles on the polished floor, passing luggage, glowing route signs, drifting steam, and rippling reflections. A child presses a hand to the glass as the train doors open, commuters step aboard, and distant city towers flicker through rain-streaked windows. Subtle cloth movement, believable crowd motion, soft atmospheric haze, crisp reflections, realistic water droplets, dramatic depth, high detail, grounded sci-fi design, natural cinematic lighting, elegant color contrast of cool blue rain and warm station lamps.",
  "negativePrompt": "low resolution, blurry faces, deformed hands, duplicated people, jittery motion, warped architecture, flickering lights, oversaturated colors, text artifacts, watermark, logo, choppy camera movement, noisy shadows, flat lighting",
  "width": 1280,
  "height": 720,
  "duration": 10,
  "CFGScale": 0.63
}
```

**Response**:

```json
{
  "taskType": "videoInference",
  "taskUUID": "da1fafe8-a59c-4e7b-b0e6-1d339acd7aec",
  "videoUUID": "ffedfb08-f7f8-47ed-a029-985a01a5fe2f",
  "videoURL": "https://vm.runware.ai/video/os/a11d13/ws/5/vi/ffedfb08-f7f8-47ed-a029-985a01a5fe2f.mp4",
  "seed": 1406591106,
  "cost": 0.1848
}
```

---

### Wind-Bent Grassland Airship Arrival (Text to Video)

[Watch video](https://assets.runware.ai/examples/klingai-1-0-standard/a5ea561e-c2f7-4910-a64f-473f3eb813b4.mp4)

**Request**:

```json
{
  "taskType": "videoInference",
  "taskUUID": "da855792-d788-4c38-ade6-7f66a93f51c7",
  "model": "klingai:1@1",
  "positivePrompt": "A majestic copper-and-canvas airship descends over a sweeping golden grassland as tall reeds sway in strong wind. Three travelers stand in the foreground watching its arrival, coats and scarves rippling. Dust trails spiral outward from the lowering craft, ropes and fins flutter, and the distant dark cliffs shimmer in warm late-afternoon haze. Slow cinematic forward camera movement, realistic scale, rich environmental motion, detailed textures, grounded adventure tone, natural lighting, stable composition, polished 1080p-style cinematic video.",
  "negativePrompt": "rain, city, monorail, alley, neon signage, underwater, low detail, blurry subjects, warped anatomy, extra limbs, jittery motion, flicker, oversaturated colors, text, watermark, logo",
  "width": 1280,
  "height": 720,
  "duration": 10,
  "CFGScale": 0.5,
  "inputs": {
    "frameImages": [
      {
        "image": "https://assets.runware.ai/assets/inputs/ce1ad7db-6753-4fdd-965a-4168aabd41db.jpg",
        "frame": "first"
      }
    ]
  }
}
```

**Response**:

```json
{
  "taskType": "videoInference",
  "taskUUID": "da855792-d788-4c38-ade6-7f66a93f51c7",
  "videoUUID": "236f176c-78b3-4123-8d6f-997929e07855",
  "videoURL": "https://vm.runware.ai/video/os/a21d05/ws/5/vi/236f176c-78b3-4123-8d6f-997929e07855.mp4",
  "seed": 1114301106,
  "cost": 0.1848
}
```

---

### Rain-Swept Monorail Platform Rush (Text to Video)

[Watch video](https://assets.runware.ai/examples/klingai-1-0-standard/9038f153-0ecd-47aa-8a37-36795555cfcc.mp4)

**Request**:

```json
{
  "taskType": "videoInference",
  "taskUUID": "d756774a-4ff8-4545-8c2e-2955c6d3744b",
  "model": "klingai:1@1",
  "positivePrompt": "A cinematic wide shot of a futuristic monorail platform during a sudden evening downpour, crowded commuters in tailored coats hurrying beneath glowing route displays, puddles rippling across the concrete, reflections of magenta and amber signage streaking on the wet ground. The camera slowly pushes forward through the crowd toward one central subject: a courier holding a sealed chrome case, standing still for a brief moment while everyone else rushes past. In the background, a sleek train glides in with soft mist and spray, doors opening as wind lifts loose papers and coat hems. Realistic human motion, layered depth, atmospheric rain, expressive lighting, detailed urban textures, cinematic realism, stable composition, subtle parallax, natural body movement, high production value.",
  "negativePrompt": "low detail, blurry faces, distorted anatomy, extra limbs, duplicate people, frozen motion, jittery camera, warped train, text artifacts, watermark, oversaturated colors, cartoon, anime, low resolution",
  "width": 1280,
  "height": 720,
  "duration": 10,
  "CFGScale": 0.5
}
```

**Response**:

```json
{
  "taskType": "videoInference",
  "taskUUID": "d756774a-4ff8-4545-8c2e-2955c6d3744b",
  "videoUUID": "f70b735c-395d-4729-bd53-4f15b8f5dc9f",
  "videoURL": "https://vm.runware.ai/video/os/a15d18/ws/5/vi/f70b735c-395d-4729-bd53-4f15b8f5dc9f.mp4",
  "seed": 1060561650,
  "cost": 0.1848
}
```