# Video Models

## Overview

With our API you can generate videos from your prompt and imagination.

We support multiple video models. You can find the [complete list](#all-available-video-models-1) along with API reference links at the end of the page.

## Example

<details>

<summary>Full example explanation</summary>

As an example, we will generate a video using the popular **video-01** model from the Chinese company **MiniMax**. This model, as you can verify by checking its [**API Reference**](https://docs.aimlapi.com/api-overview/video-models/minimax-video), accepts an image as input (serving as the first frame of the future video) along with a text prompt, where we can describe what should happen to this image throughout the video.

We used a publicly available [image](https://upload.wikimedia.org/wikipedia/commons/thumb/a/a9/Cheetah4.jpg/1200px-Cheetah4.jpg) from Wikimedia and described in the prompt that the cheetah turns toward the camera.

A notable feature of **video-01** model is that video generation and retrieving the final video file from the server are done through separate API calls. *(AIML API tokens are only consumed during the first step—i.e., the actual video generation.)*

You can insert the contents of each of the two code blocks into a separate Python file in your preferred development environment (or, for example, place each part in a separate cell in **Jupyter Notebook**). Replace `<YOUR_API_KEY>` in both fragments with the **AIML API Key** obtained from your [account](https://aimlapi.com/app/keys).

Next, run the first code block. If everything is set up correctly, you will see the following line in the program output (the specific numbers, of course, will vary):\
`Generation: {'generation_id': '234954179076239'}`

This means that our generation has been queued on the server.

Now, copy this numerical value (*without* quotation marks) and insert it into the second code block, replacing `<GENERATION_ID>`. Now, we can execute the second code block to request our final video file from the server.

Processing the request on the server may take some time (usually less than a minute). If the requested file is not yet ready, the output will display the corresponding status. Try waiting a bit and rerun the second code block. *(If you're comfortable with coding, you can modify the script to perform this request inside a loop.)*

In our case, after three reruns of the second code block (waiting a total of about 20 seconds), we saw the following output:

{% code overflow="wrap" %}

```json
Generation: {'id': '234954179076239', 'status': 'completed', 'video': {'url': 'https://cdn.aimlapi.com/whale/inference_output%2Fvideo%2F2025-02-07%2F0c4d54db-da1b-404a-a495-600426796415%2Foutput.mp4?Expires=1738947643&OSSAccessKeyId=LTAI5tAmwsjSaaZVA6cEFAUu&Signature=mo3sfeNpVz5mNQW%2BSt2g8d2%2Fvf4%3D'}}
```

{% endcode %}

As you can see, the `'status'` is now `'completed'`, and further in the output line, we have a URL where the generated video file can be downloaded.

Here is the resulting turning cheetah ([original 960x720px](https://drive.google.com/file/d/1T06W3BGZ_HanpkN-_lvr7U9HRH7IHG9C/view?usp=sharing)):

<img src="https://3927338786-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2FROMd1X5PuqtikJ48n2N9%2Fuploads%2Fgit-blob-973ba7e0ca74e03cf468aea3813725b60914532c%2Fturned_cheetah.gif?alt=media" alt="" data-size="original">

</details>

The first code block (generation):

{% tabs %}
{% tab title="Python" %}
{% code overflow="wrap" %}

```python
import requests

def main():
    url = "https://api.aimlapi.com/v2/generate/video/minimax/generation"
    payload = {
        "model": "video-01",
        "prompt": "Cheetah turns toward the camera.",
        "first_frame_image": "https://upload.wikimedia.org/wikipedia/commons/thumb/a/a9/Cheetah4.jpg/1200px-Cheetah4.jpg",
    }
    # Insert your AIML API Key instead of <YOUR_AIMLAPI_KEY>:
    headers = {"Authorization": "Bearer <YOUR_AIMLAPI_KEY>", "Content-Type": "application/json"}

    response = requests.post(url, json=payload, headers=headers)
    print("Generation:", response.json())


if __name__ == "__main__":
    main()
```

{% endcode %}
{% endtab %}
{% endtabs %}

The second code block (retrieving the generated video file from the server):

{% tabs %}
{% tab title="Python" %}
{% code overflow="wrap" %}

```python
import requests

def main():
    url = "https://api.aimlapi.com/v2/generate/video/minimax/generation"
    params = {
        # Insert the generation_id (that was returned by the generation part above) in the quotation marks instead of <GENERATION_ID>:
        "generation_id": "<GENERATION_ID>",
    }
    
    # Insert your AIML API Key instead of <YOUR_AIMLAPI_KEY>:
    headers = {"Authorization": "Bearer <YOUR_AIMLAPI_KEY>", "Content-Type": "application/json"}

    response = requests.get(url, params=params, headers=headers)
    print("Generation:", response.json())


if __name__ == "__main__":
    main()
```

{% endcode %}
{% endtab %}
{% endtabs %}

## All Available Video Models

<table data-header-hidden="false" data-header-sticky data-full-width="true"><thead><tr><th width="302.199951171875">Model ID + API Reference link</th><th width="117.53338623046875">Developer</th><th width="99.7999267578125">Context</th><th>Model Card</th></tr></thead><tbody><tr><td><a href="video-models/alibaba-cloud/wan-2.1-plus-text-to-video">alibaba/wan2.1-t2v-plus</a></td><td>Alibaba Cloud</td><td></td><td><a href="https://aimlapi.com/models/wan2-1-plus">Wan2.1 Plus</a></td></tr><tr><td><a href="video-models/alibaba-cloud/wan-2.1-turbo-text-to-video">alibaba/wan2.1-t2v-turbo</a></td><td>Alibaba Cloud</td><td></td><td><a href="https://aimlapi.com/models/wan2-1-turbo">Wan2.1 Turbo</a></td></tr><tr><td><a href="video-models/alibaba-cloud/wan-2.2-plus-text-to-video">alibaba/wan2.2-t2v-plus</a></td><td>Alibaba Cloud</td><td></td><td><a href="https://aimlapi.com/models/wan2-2-t2v">Wan 2.2 T2V</a></td></tr><tr><td><a href="video-models/alibaba-cloud/wan-2.5-preview-text-to-video">alibaba/wan2.5-t2v-preview</a></td><td>Alibaba Cloud</td><td></td><td><a href="https://aimlapi.com/models/wan-2-5-text-to-video">Wan 2.5 Text-to-Video</a></td></tr><tr><td><a href="video-models/alibaba-cloud/wan-2.5-preview-image-to-video">alibaba/wan2.5-i2v-preview</a></td><td>Alibaba Cloud</td><td></td><td><a href="https://aimlapi.com/models/wan-2-5-image-to-video">Wan 2.5 Image-to-Video</a></td></tr><tr><td><a href="video-models/alibaba-cloud/wan-2.2-14b-animate-replace-image-to-video">alibaba/wan2.2-14b-animate-replace</a></td><td>Alibaba Cloud</td><td></td><td><a href="video-models/alibaba-cloud/wan-2.2-14b-animate-replace-image-to-video">Wan 2.2 14b animate replace</a></td></tr><tr><td><a href="video-models/alibaba-cloud/wan-2.2-14b-animate-move-image-to-video">alibaba/wan2.2-14b-animate-move</a></td><td>Alibaba Cloud</td><td></td><td><a href="video-models/alibaba-cloud/wan-2.2-14b-animate-move-image-to-video">Wan 2.2 14b animate move</a></td></tr><tr><td><a href="video-models/alibaba-cloud/wan2.2-vace-fun-a14b-reframe-image-to-video">alibaba/wan2.2-vace-fun-a14b-reframe</a></td><td>Alibaba Cloud</td><td></td><td><a href="video-models/alibaba-cloud/wan2.2-vace-fun-a14b-reframe-image-to-video">Wan 2.2 vace fun 14b reframe</a></td></tr><tr><td><a href="video-models/alibaba-cloud/wan2.2-vace-fun-a14b-outpainting-image-to-video">alibaba/wan2.2-vace-fun-a14b-outpainting</a></td><td>Alibaba Cloud</td><td></td><td><a href="video-models/alibaba-cloud/wan2.2-vace-fun-a14b-outpainting-image-to-video">Wan 2.2 vace fun 14b outpainting</a></td></tr><tr><td><a href="video-models/alibaba-cloud/wan2.2-vace-fun-a14b-inpainting-image-to-video">alibaba/wan2.2-vace-fun-a14b-inpainting</a></td><td>Alibaba Cloud</td><td></td><td><a href="video-models/alibaba-cloud/wan2.2-vace-fun-a14b-inpainting-image-to-video">Wan 2.2 vace fun 14b inpainting</a></td></tr><tr><td><a href="video-models/alibaba-cloud/wan2.2-vace-fun-a14b-pose-image-to-video">alibaba/wan2.2-vace-fun-a14b-pose</a></td><td>Alibaba Cloud</td><td></td><td><a href="video-models/alibaba-cloud/wan2.2-vace-fun-a14b-pose-image-to-video">Wan 2.2 vace fun 14b pose</a></td></tr><tr><td><a href="video-models/alibaba-cloud/wan2.2-vace-fun-a14b-depth-image-to-video">alibaba/wan2.2-vace-fun-14b-depth</a></td><td>Alibaba Cloud</td><td></td><td><a href="video-models/alibaba-cloud/wan2.2-vace-fun-a14b-depth-image-to-video">Wan 2.2 vace fun 14b depth</a></td></tr><tr><td><a href="video-models/alibaba-cloud/wan-2.5-preview-text-to-video">alibaba/wan2.5-t2v-preview</a></td><td>Alibaba Cloud</td><td></td><td><a href="https://aimlapi.com/models/wan-2-5-t2i-preview">Wan 2.5 Preview</a></td></tr><tr><td><a href="video-models/alibaba-cloud/wan-2.5-preview-image-to-video">alibaba/wan2.5-i2v-preview</a></td><td>Alibaba Cloud</td><td></td><td>-</td></tr><tr><td><a href="video-models/alibaba-cloud/wan-2.6-text-to-video">alibaba/wan-2-6-t2v</a></td><td>Alibaba Cloud</td><td></td><td><a href="https://aimlapi.com/models/wan-2-6-text-to-video">Wan 2.6 Text-to-Video</a></td></tr><tr><td><a href="video-models/alibaba-cloud/wan-2.6-image-to-video">alibaba/wan-2-6-i2v</a></td><td>Alibaba Cloud</td><td></td><td><a href="https://aimlapi.com/models/wan-2-6-image-to-video">Wan 2.6 Image-to-Video</a></td></tr><tr><td><a href="video-models/alibaba-cloud/wan-2.6-reference-to-video">alibaba/wan-2-6-r2v</a></td><td>Alibaba Cloud</td><td></td><td><a href="https://aimlapi.com/models/wan-2-6-reference-to-video">Wan 2.6 Reference-to-Video</a></td></tr><tr><td><a href="video-models/alibaba-cloud/wan-2.6-flash-image-to-video">alibaba/wan-2-6-image-to-video-flash</a></td><td>Alibaba Cloud</td><td></td><td><em>Coming Soon</em></td></tr><tr><td><a href="video-models/bytedance/seedance-1.0-lite-text-to-video">bytedance/seedance-1-0-lite-t2v</a></td><td>ByteDance</td><td></td><td><a href="https://aimlapi.com/models/seedance-1-0">Seedance 1.0 lite Text to Video</a></td></tr><tr><td><a href="video-models/bytedance/seedance-1.0-lite-image-to-video">bytedance/seedance-1-0-lite-i2v</a></td><td>ByteDance</td><td></td><td><a href="https://aimlapi.com/models/seedance-1-0-lite-image-to-video">Seedance 1.0 lite Image to Video</a></td></tr><tr><td><a href="video-models/bytedance/seedance-1.0-pro-text-to-video">bytedance/seedance-1-0-pro-t2v</a></td><td>ByteDance</td><td></td><td><a href="https://aimlapi.com/models/seedance-1-0-pro">Seedance 1.0 Pro</a></td></tr><tr><td><a href="video-models/bytedance/seedance-1.0-pro-image-to-video">bytedance/seedance-1-0-pro-i2v</a></td><td>ByteDance</td><td></td><td><a href="https://aimlapi.com/models/seedance-1-0-pro">Seedance 1.0 Pro</a></td></tr><tr><td><a href="video-models/bytedance/seedance-1.0-pro-fast">bytedance/seedance-1-0-pro-fast</a></td><td>ByteDance</td><td></td><td><a href="https://aimlapi.com/models/seedance-1-0-pro-fast">Seedance 1.0 Pro Fast</a></td></tr><tr><td><a href="video-models/bytedance/omnihuman">bytedance/omnihuman</a></td><td>ByteDance</td><td></td><td><a href="https://aimlapi.com/models/omnihuman">OmniHuman</a></td></tr><tr><td><a href="video-models/bytedance/omnihuman-1.5">bytedance/omnihuman/v1.5</a></td><td>ByteDance</td><td></td><td><a href="https://aimlapi.com/models/omnihuman-v1-5">OmniHuman v1.5</a></td></tr><tr><td><a href="video-models/bytedance/seedance-1.5-pro">bytedance/seedance-1-5-pro</a></td><td>ByteDance</td><td></td><td><a href="https://aimlapi.com/models/seedance-1-5-pro">Seedance 1.5 Pro</a></td></tr><tr><td><a href="video-models/bytedance/seedance-2.0">bytedance/seedance-2-0</a></td><td>ByteDance</td><td></td><td><em>Coming Soon</em></td></tr><tr><td><a href="video-models/bytedance/seedance-2.0-fast">bytedance/seedance-2-0-fast</a></td><td>ByteDance</td><td></td><td><em>Coming Soon</em></td></tr><tr><td><a href="video-models/google/veo2-text-to-video">veo2</a></td><td>Google</td><td></td><td><a href="https://aimlapi.com/models/veo-2-text-to-video-api">Veo2 Text-to-Video</a></td></tr><tr><td><a href="video-models/google/veo2-image-to-video">veo2/image-to-video</a></td><td>Google</td><td></td><td><a href="https://aimlapi.com/models/veo-2-image-to-video-api">Veo2 Image-to-Video</a></td></tr><tr><td><a href="video-models/google/veo3-text-to-video">google/veo3</a></td><td>Google</td><td></td><td><a href="https://aimlapi.com/models/veo-3">Veo 3</a></td></tr><tr><td><a href="video-models/google/veo-3-image-to-video">google/veo-3.0-i2v</a></td><td>Google</td><td></td><td><a href="https://aimlapi.com/models/veo-3-0-i2v">Veo 3 I2V</a></td></tr><tr><td><a href="video-models/google/veo-3-fast-text-to-video">google/veo-3.0-fast</a></td><td>Google</td><td></td><td><a href="https://aimlapi.com/models/veo-3-0-fast">Veo 3 Fast</a></td></tr><tr><td><a href="video-models/google/veo-3-fast-image-to-video">google/veo-3.0-i2v-fast</a></td><td>Google</td><td></td><td><a href="https://aimlapi.com/models/veo-3-i2v-fast">Veo 3 I2V Fast</a></td></tr><tr><td><a href="video-models/google/veo-3-1-text-to-video">google/veo-3.1-t2v</a></td><td>Google</td><td></td><td><a href="https://aimlapi.com/models/veo-3-1-text-to-video">Veo 3.1 Text-to-Video</a></td></tr><tr><td><a href="video-models/google/veo-3-1-text-to-video-fast">google/veo-3.1-t2v-fast</a></td><td>Google</td><td></td><td><a href="https://aimlapi.com/models/veo-3-1-fast-text-to-video">Veo 3.1 Fast Text-to-Video</a></td></tr><tr><td><a href="video-models/google/veo-3-1-image-to-video">google/veo-3.1-i2v</a></td><td>Google</td><td></td><td><a href="https://aimlapi.com/models/veo-3-1-image-to-video">Veo 3.1 Image-to-Video</a></td></tr><tr><td><a href="video-models/google/veo-3-1-image-to-video-fast">google/veo-3.1-i2v-fast</a></td><td>Google</td><td></td><td><a href="https://aimlapi.com/models/veo-3-1-fast-image-to-video">Veo 3.1 Fast Image-to-Video</a></td></tr><tr><td><a href="video-models/google/veo-3-1-reference-to-video">google/veo-3.1-reference-to-video</a></td><td>Google</td><td></td><td><a href="https://aimlapi.com/models/veo-3-1-reference-to-video">Veo 3.1 Reference-to-Video</a></td></tr><tr><td><a href="video-models/google/veo-3-1-first-last-image-to-video">google/veo-3.1-first-last-image-to-video</a></td><td>Google</td><td></td><td><a href="https://aimlapi.com/models/veo-3-1-first-last-frame-to-video">Veo 3.1 First-Last Frame-to-Video</a></td></tr><tr><td><a href="video-models/google/veo-3-1-first-last-image-to-video-fast">google/veo-3.1-first-last-image-to-video-fast</a></td><td>Google</td><td></td><td><a href="https://aimlapi.com/models/veo-3-1-fast-first-last-frame-to-video">Veo 3.1 Fast First-Last Frame-to-Video</a></td></tr><tr><td><a href="video-models/google/veo-3.1-extend-video">google/veo3-1-extend-video</a></td><td>Google</td><td></td><td><a href="https://aimlapi.com/models/veo-3-1-extend-video">Veo 3.1 Extend Video</a></td></tr><tr><td><a href="video-models/google/veo-3.1-fast-extend-video">google/veo3-1-fast-extend-video</a></td><td>Google</td><td></td><td><a href="https://aimlapi.com/models/veo-3-1-fast-extend-video">Veo 3.1 Fast Extend Video</a></td></tr><tr><td><a href="video-models/google/veo-3.1-lite-generate-preview">google/veo-3-1-lite-generate-preview</a></td><td>Google</td><td></td><td><em>Coming Soon</em></td></tr><tr><td><a href="video-models/kling-ai/v1-standard-image-to-video">kling-video/v1/standard/image-to-video</a></td><td>Kling AI</td><td></td><td><a href="https://aimlapi.com/models/kling-ai-image-to-video">Kling AI (image-to-video)</a></td></tr><tr><td><a href="video-models/kling-ai/v1-standard-text-to-video">kling-video/v1/standard/text-to-video</a></td><td>Kling AI</td><td></td><td><a href="https://aimlapi.com/models/kling-ai-text-to-video-api">Kling AI (text-to-video)</a></td></tr><tr><td><a href="video-models/kling-ai/v1-pro-image-to-video">kling-video/v1/pro/image-to-video</a></td><td>Kling AI</td><td></td><td><a href="https://aimlapi.com/models/kling-ai-image-to-video">Kling AI (image-to-video)</a></td></tr><tr><td><a href="video-models/kling-ai/v1-pro-text-to-video">kling-video/v1/pro/text-to-video</a></td><td>Kling AI</td><td></td><td><a href="https://aimlapi.com/models/kling-ai-text-to-video-api">Kling AI (text-to-video)</a></td></tr><tr><td><a href="video-models/kling-ai/v1.6-standard-text-to-video">kling-video/v1.6/standard/text-to-video</a></td><td>Kling AI</td><td></td><td><a href="https://aimlapi.com/models/kling-1-6-standard">Kling 1.6 Standard</a></td></tr><tr><td><a href="video-models/kling-ai/v1.6-standart-image-to-video">kling-video/v1.6/standard/image-to-video</a></td><td>Kling AI</td><td></td><td><a href="https://aimlapi.com/models/kling-1-6-standard">Kling 1.6 Standard</a></td></tr><tr><td><a href="video-models/kling-ai/v1.6-pro-image-to-video">kling-video/v1.6/pro/image-to-video</a></td><td>Kling AI</td><td></td><td><a href="https://aimlapi.com/models/kling-1-6-pro-api">Kling 1.6 Pro</a></td></tr><tr><td><a href="video-models/kling-ai/v1.6-pro-text-to-video">kling-video/v1.6/pro/text-to-video</a></td><td>Kling AI</td><td></td><td><a href="https://aimlapi.com/models/kling-1-6-pro-api">Kling 1.6 Pro</a></td></tr><tr><td><a href="video-models/kling-ai/v1.6-pro-effects">klingai/kling-video-v1.6-pro-effects</a></td><td>Kling AI</td><td></td><td><a href="https://aimlapi.com/models/kling-1-6-pro-effects">Kling 1.6 Pro Effects</a></td></tr><tr><td><a href="video-models/kling-ai/v1.6-standard-effects">klingai/kling-video-v1.6-standard-effects</a></td><td>Kling AI</td><td></td><td><a href="https://aimlapi.com/models/kling-video-v1-6-standard-effects">Kling 1.6 Standard Effects</a></td></tr><tr><td><a href="video-models/kling-ai/v1.6-standard-multi-image-to-video">kling-video/v1.6/standard/multi-image-to-video</a></td><td>Kling AI</td><td></td><td><a href="https://aimlapi.com/models/kling-v1-6-multi-image-to-video">Kling V1.6 Multi-Image-to-Video</a></td></tr><tr><td><a href="video-models/kling-ai/v2-master-image-to-video">klingai/v2-master-image-to-video</a></td><td>Kling AI</td><td></td><td><a href="https://aimlapi.com/models/kling-2-0-master">Kling 2.0 Master</a></td></tr><tr><td><a href="video-models/kling-ai/v2-master-text-to-video">klingai/v2-master-text-to-video</a></td><td>Kling AI</td><td></td><td><a href="https://aimlapi.com/models/kling-2-0-master">Kling 2.0 Master</a></td></tr><tr><td><a href="video-models/kling-ai/v2.1-standard-image-to-video">kling-video/v2.1/standard/image-to-video</a></td><td>Kling AI</td><td></td><td><a href="https://aimlapi.com/models/kling-v2-1-standard-i2v">Kling V2.1 Standard I2V</a></td></tr><tr><td><a href="video-models/kling-ai/v2.1-pro-image-to-video">kling-video/v2.1/pro/image-to-video</a></td><td>Kling AI</td><td></td><td><a href="https://aimlapi.com/models/kling-v2-1-pro-i2v">Kling V2.1 Pro I2V</a></td></tr><tr><td><a href="video-models/kling-ai/v2.1-master-image-to-video">klingai/v2.1-master-image-to-video</a></td><td>Kling AI</td><td></td><td><a href="https://aimlapi.com/models/kling-2-1">ling 2.1 Master</a></td></tr><tr><td><a href="video-models/kling-ai/v2.1-master-text-to-video">klingai/v2.1-master-text-to-video</a></td><td>Kling AI</td><td></td><td><a href="https://aimlapi.com/models/kling-2-1">Kling 2.1 Master</a></td></tr><tr><td><a href="video-models/kling-ai/v2.5-turbo-pro-image-to-video">klingai/v2.5-turbo/pro/image-to-video</a></td><td>Kling AI</td><td></td><td><a href="https://aimlapi.com/models/kling-video-v2-5-turbo-pro-i2v">Kling Video v2.5 Turbo Pro Image-to-Video</a></td></tr><tr><td><a href="video-models/kling-ai/v2.5-turbo-pro-text-to-video">klingai/v2.5-turbo/pro/text-to-video</a></td><td>Kling AI</td><td></td><td><a href="https://aimlapi.com/models/kling-video-v2-5-turbo-pro-t2v">Kling Video v2.5 Turbo Pro Text-to-Video</a></td></tr><tr><td><a href="video-models/kling-ai/avatar-standard">klingai/avatar-standard</a></td><td>Kling AI</td><td></td><td><a href="https://aimlapi.com/models/kling-ai-avatar-standard">Kling AI Avatar Standard</a></td></tr><tr><td><a href="video-models/kling-ai/avatar-pro">klingai/avatar-pro</a></td><td>Kling AI</td><td></td><td><a href="https://aimlapi.com/models/kling-ai-avatar-pro">Kling AI Avatar Pro</a></td></tr><tr><td><a href="video-models/kling-ai/video-v2-6-pro-text-to-video">klingai/video-v2-6-pro-text-to-video</a></td><td>Kling AI</td><td></td><td><a href="https://aimlapi.com/models/kling-2-6-pro-text-to-video">Kling 2.6 Pro Text-to-Video</a></td></tr><tr><td><a href="video-models/kling-ai/video-v2.6-pro-image-to-video">klingai/video-v2-6-pro-image-to-video</a></td><td>Kling AI</td><td></td><td><a href="https://aimlapi.com/models/kling-2-6-pro-image-to-video">Kling 2.6 Pro Image-to-Video</a></td></tr><tr><td><a href="video-models/kling-ai/video-o1-image-to-video">klingai/video-o1-image-to-video</a></td><td>Kling AI</td><td></td><td><a href="https://aimlapi.com/models/kling-video-o1-image-to-video">Kling Video O1 Image to Video</a></td></tr><tr><td><a href="video-models/kling-ai/video-o1-reference-to-video">klingai/video-o1-reference-to-video</a></td><td>Kling AI</td><td></td><td><a href="https://aimlapi.com/models/kling-video-o1-reference-to-video">Kling Video O1 Reference-to-Video</a></td></tr><tr><td><a href="video-models/kling-ai/video-o1-video-to-video-edit">klingai/video-o1-video-to-video-edit</a></td><td>Kling AI</td><td></td><td><a href="https://aimlapi.com/models/kling-video-o1-video-to-video-edit">Kling Video O1 Video to Video Edit</a></td></tr><tr><td><a href="video-models/kling-ai/video-o1-video-to-video-reference">klingai/video-o1-video-to-video-reference</a></td><td>Kling AI</td><td></td><td><a href="https://aimlapi.com/models/kling-video-o1-video-to-video-reference">Kling Video O1 Video-to-Video Reference</a></td></tr><tr><td><a href="video-models/kling-ai/video-v2.6-pro-motion-control">klingai/video-v2-6-pro-motion-control</a></td><td>Kling AI</td><td></td><td><a href="https://aimlapi.com/models/kling-2-6-pro-motion-control">Kling 2.6 Pro Motion Control</a></td></tr><tr><td><a href="video-models/kling-ai/v3-standard-text-to-video">klingai/video-v3-standard-text-to-video</a></td><td>Kling AI</td><td></td><td><a href="https://aimlapi.com/models/kling-video-v3-standard">Kling Video v3 Standard</a></td></tr><tr><td><a href="video-models/kling-ai/v3-standard-image-to-video">klingai/video-v3-standard-image-to-video</a></td><td>Kling AI</td><td></td><td><a href="https://aimlapi.com/models/kling-video-v3-standard">Kling Video v3 Standard</a></td></tr><tr><td><a href="video-models/kling-ai/v3-pro-text-to-video">klingai/video-v3-pro-text-to-video</a></td><td>Kling AI</td><td></td><td><a href="https://aimlapi.com/models/kling-video-v3-pro">Kling Video v3 Pro</a></td></tr><tr><td><a href="video-models/kling-ai/v3-pro-image-to-video">klingai/video-v3-pro-image-to-video</a></td><td>Kling AI</td><td></td><td><a href="https://aimlapi.com/models/kling-video-v3-pro">Kling Video v3 Pro</a></td></tr><tr><td><a href="video-models/krea/krea-wan-14b-text-to-video">krea/krea-wan-14b/text-to-video</a></td><td>Krea</td><td></td><td><a href="https://aimlapi.com/models/krea-wan-14b-text-to-video">Krea WAN 14B Text-to-Video</a></td></tr><tr><td><a href="video-models/krea/krea-wan-14b-video-to-video">krea/krea-wan-14b/video-to-video</a></td><td>Krea</td><td></td><td><a href="https://aimlapi.com/models/krea-wan-14b-video-to-video">Krea WAN 14B Video-to-Video</a></td></tr><tr><td><a href="video-models/ltxv/ltxv-2">ltxv/ltxv-2</a></td><td>LTXV</td><td></td><td><a href="https://aimlapi.com/models/ltxv-2-text-to-video">LTXV 2</a></td></tr><tr><td><a href="video-models/ltxv/ltxv-2-fast">ltxv/ltxv-2-fast</a></td><td>LTXV</td><td></td><td><a href="https://aimlapi.com/models/ltxv-2-fast-text-to-video">LTXV 2 Fast</a></td></tr><tr><td><a href="video-models/luma-ai/luma-ray-2">luma/ray-2</a></td><td>Luma AI</td><td></td><td><a href="https://aimlapi.com/models/ray-2">Ray 2</a></td></tr><tr><td><a href="video-models/luma-ai/luma-ray-flash-2">luma/ray-flash-2</a></td><td>Luma AI</td><td></td><td><a href="https://aimlapi.com/models/ray-flash-2">Ray Flash 2</a></td></tr><tr><td><a href="video-models/magic/text-to-video">magic/text-to-video</a></td><td>Magic</td><td></td><td><a href="https://aimlapi.com/models/magic-video">Magic Video</a></td></tr><tr><td><a href="video-models/kling-ai/v2-master-image-to-video">magic/image-to-video</a></td><td>Magic</td><td></td><td><a href="https://aimlapi.com/models/magic-video">Magic Video</a></td></tr><tr><td><a href="video-models/magic/video-to-video">magic/video-to-video</a></td><td>Magic</td><td></td><td><a href="https://aimlapi.com/models/magic-video">Magic Video</a></td></tr><tr><td><a href="video-models/minimax/video-01">video-01</a></td><td>MiniMax</td><td></td><td><a href="https://aimlapi.com/models/minimax-video-01-api">MiniMax Video-01</a></td></tr><tr><td><a href="video-models/minimax/video-01-live2d">video-01-live2d</a></td><td>MiniMax</td><td></td><td>-</td></tr><tr><td><a href="video-models/minimax/hailuo-02">minimax/hailuo-02</a></td><td>MiniMax</td><td></td><td><a href="https://aimlapi.com/models/hailuo-02">Hailuo 02</a></td></tr><tr><td><a href="video-models/minimax/hailuo-2.3">minimax/hailuo-2.3</a></td><td>MiniMax</td><td></td><td><a href="https://aimlapi.com/models/hailuo-2-3">Hailuo 2.3</a></td></tr><tr><td><a href="video-models/minimax/hailuo-2.3-fast">minimax/hailuo-2.3-fast</a></td><td>MiniMax</td><td></td><td><a href="https://aimlapi.com/models/hailuo-2-3-fast">Hailuo 2.3 Fast</a></td></tr><tr><td><a href="video-models/openai/sora-2-t2v">sora-2-t2v</a></td><td>OpenAI</td><td></td><td>-</td></tr><tr><td><a href="video-models/openai/sora-2-i2v">sora-2-i2v</a></td><td>OpenAI</td><td></td><td>-</td></tr><tr><td><a href="video-models/openai/sora-2-pro-t2v">sora-2-pro-t2v</a></td><td>OpenAI</td><td></td><td>-</td></tr><tr><td><a href="video-models/openai/sora-2-pro-i2v">sora-2-pro-i2v</a></td><td>OpenAI</td><td></td><td>-</td></tr><tr><td><a href="video-models/pixverse/v5-text-to-video">pixverse/v5/text-to-video</a></td><td>PixVerse</td><td></td><td><a href="https://aimlapi.com/models/pixverse-v5-t2v">Pixverse v5 Text-to-Video</a></td></tr><tr><td><a href="video-models/pixverse/v5-image-to-video">pixverse/v5/image-to-video</a></td><td>PixVerse</td><td></td><td><a href="https://aimlapi.com/models/pixverse-v5-i2v">Pixverse v5 Image-to-Video</a></td></tr><tr><td><a href="video-models/pixverse/v5-transition">pixverse/v5/transition</a></td><td>PixVerse</td><td></td><td><a href="https://aimlapi.com/models/pixverse-v5-transition">Pixverse v5 Transition</a></td></tr><tr><td><a href="video-models/pixverse/v5-5-text-to-video">pixverse/v5-5-text-to-video</a></td><td>PixVerse</td><td></td><td><a href="https://aimlapi.com/models/pixverse-v5-5-text-to-video">PixVerse V5.5 Text-to-Video</a></td></tr><tr><td><a href="video-models/pixverse/v5-5-image-to-video">pixverse/v5-5-image-to-video</a></td><td>PixVerse</td><td></td><td><a href="https://aimlapi.com/models/pixverse-v5-5-image-to-video">Pixverse v5.5 Image-to-Video</a></td></tr><tr><td><a href="video-models/pixverse/lip-sync">pixverse/lip-sync</a></td><td>PixVerse</td><td></td><td><em>Coming Soon</em></td></tr><tr><td><a href="video-models/runway/gen3a_turbo">gen3a_turbo</a></td><td>Runway</td><td></td><td><a href="https://aimlapi.com/models/runway-gen-3-turbo">Runway Gen-3 turbo</a></td></tr><tr><td><a href="video-models/runway/gen4_turbo">runway/gen4_turbo</a></td><td>Runway</td><td></td><td><a href="https://aimlapi.com/models/runway-gen-4-turbo-api">Runway Gen-4 Turbo</a></td></tr><tr><td><a href="video-models/runway/gen4_aleph">runway/gen4_aleph</a></td><td>Runway</td><td></td><td><a href="https://aimlapi.com/models/aleph">Aleph</a></td></tr><tr><td><a href="video-models/runway/act_two">runway/act_two</a></td><td>Runway</td><td></td><td><a href="https://aimlapi.com/models/runway-act-two">Runway Act Two</a></td></tr><tr><td><a href="video-models/sber-ai/kandinsky5-text-to-video">sber-ai/kandinsky5-t2v</a></td><td>Sber AI</td><td></td><td><a href="https://aimlapi.com/models/kandinsky-5-standard">Kandinsky 5 Standard</a></td></tr><tr><td><a href="video-models/sber-ai/kandinsky5-distill-text-to-video">sber-ai/kandinsky5-distill-t2v</a></td><td>Sber AI</td><td></td><td><a href="https://aimlapi.com/models/kandinsky-5-distill">Kandinsky 5 Distill</a></td></tr><tr><td><a href="video-models/tencent/hunyuan-video-foley">tencent/hunyuan-video-foley</a></td><td>Tencent</td><td></td><td><a href="https://aimlapi.com/models/hunyuanvideo-foley">HunyuanVideo Foley</a></td></tr><tr><td><a href="video-models/veed/fabric-1.0">veed/fabric-1.0</a></td><td>Veed</td><td></td><td><a href="video-models/veed/fabric-1.0">fabric-1.0</a></td></tr><tr><td><a href="video-models/veed/fabric-1.0-fast">veed/fabric-1.0-fast</a></td><td>Veed</td><td></td><td><a href="video-models/veed/fabric-1.0-fast">fabric-1.0-fast</a></td></tr></tbody></table>
