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

# Kling 3.0 Omni

> Uses the Omni endpoint for text, image/video references and video editing. Native audio is unavailable with video input.

Uses the Omni endpoint for text, image/video references and video editing. Native audio is unavailable with video input.

## Model Specifications

| Item                             | Details                                                                    |
| -------------------------------- | -------------------------------------------------------------------------- |
| ID                               | `kling-3.0-omni`                                                           |
| Endpoints                        | [Omni Generation and Editing](/en/api-reference/endpoint/kling-omni-video) |
| Standard generation resolution   | 720p / 1080p / 4k                                                          |
| Standard generation duration (s) | 3-15                                                                       |

The duration above does not apply to motion control; media input may impose additional constraints on the linked endpoint pages. Put the model in the path and keep the native body structure, without metadata.

## Request Example

Set the `MIXROUTE_API_KEY` environment variable. Replace `example.com` media URLs with real, publicly accessible files.

```bash theme={null}
curl --request POST "https://api.mixroute.ai/kling/omni-video/kling-3.0-omni" \
  --header "Authorization: Bearer $MIXROUTE_API_KEY" \
  --header "Content-Type: application/json" \
  --data '{
  "contents": [
    {
      "type": "prompt",
      "text": "The mug in @image_1 slowly rotates on a white tabletop. Soft studio lighting."
    },
    {
      "type": "refer_image",
      "url": "https://example.com/reference.png",
      "id": "image_1"
    }
  ],
  "settings": {
    "resolution": "720p",
    "duration": 5,
    "aspect_ratio": "16:9",
    "audio": "native",
    "multi_shot": false
  }
}'
```

Store submission `data.id` and use [Query Kling Task](/en/api-reference/endpoint/kling-tasks) to read status and outputs. For shared options and base pricing, see [Kling Overview](/en/api-reference/endpoint/kling).
