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

# Kling 3 Pro

> Kuaishou's flagship cinematic video model on Kyma. Sharper than 2.5 Pro, 5–10s clips, pay per second.

## Overview

`kling-3-pro` is Kuaishou's flagship Kling tier. Photoreal humans, smooth motion, sharper output than `kling-2.5-pro`. The right pick for hero shots and premium brand video where the result needs to stand up at full screen.

## Specs

| Field             | Value                                                                      |
| ----------------- | -------------------------------------------------------------------------- |
| Model ID          | `kling-3-pro`                                                              |
| Creator           | Kuaishou                                                                   |
| Best for          | Premium cinematic clips, character/face shots, hero brand video            |
| Default duration  | 5 seconds                                                                  |
| Max duration      | 10 seconds                                                                 |
| Input modalities  | Text, image (I2V)                                                          |
| Output modalities | Video                                                                      |
| Resolution        | 1080p                                                                      |
| Audio             | No (use [`kling-3-pro-audio`](/models/kling-3-pro-audio) for native audio) |
| Pricing mode      | Per second                                                                 |

## Pricing

|                 |   Cost   |
| --------------- | :------: |
| Per second      | \$0.1512 |
| Default 5s clip | \$0.7560 |

## Use this when

* You need flagship-quality cinematic video on Kyma.
* The result is going on a landing page, ad, or hero placement.
* You don't need synchronized audio in the clip.

## Pick something else when

* You need synchronized ambient or dialogue audio: use [`kling-3-pro-audio`](/models/kling-3-pro-audio).
* You're producing fast-cut social with audio: use [`seedance-2-pro`](/models/seedance-2-pro) or [`seedance-2-fast`](/models/seedance-2-fast).
* Cost matters more than the absolute fidelity of motion: use [`kling-2.5-pro`](/models/kling-2.5-pro).

## Example

```bash theme={null}
curl -X POST https://kymaapi.com/v1/videos/generations \
  -H "Authorization: Bearer $KYMA_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "model": "kling-3-pro",
    "prompt": "an architectural fly-through of a glass-and-steel tower at sunset, cinematic anamorphic look",
    "duration": 5
  }'
```

The endpoint is async — POST returns `202` with a `job_id`; poll [`GET /v1/jobs/{id}`](/api-reference/videos-generations#poll-for-the-result) until status is `succeeded`.

## Image-to-video

Pass `image_url` to use the image as the first frame:

```json theme={null}
{
  "model": "kling-3-pro",
  "prompt": "the camera slowly pushes in, the subject blinks once",
  "image_url": "https://example.com/portrait.jpg",
  "duration": 5
}
```

## See also

* [Video Generation](/models/video-generation) — full family overview
* [`kling-3-pro-audio`](/models/kling-3-pro-audio) — same visuals plus native audio
* [`POST /v1/videos/generations`](/api-reference/videos-generations) — endpoint reference
