# Omnihuman > Generates hyper-realistic full-body videos from a single image and audio/video input using advanced diffusion transformers, supporting diverse styles, natural motion, and HD outputs up to 1024×1024 at 30fps. ## Overview - **Model ID**: `omni-human` - **Category**: video - **Provider**: byteplus - **Status**: model_ready - **Screenshot**: `https://assets.modelslab.com/generations/6d7245ef-c818-4d70-936b-137a33847c75.webp` ## API Information This model can be used via our HTTP API. See the API documentation and usage examples below. ### Endpoint - **URL**: `https://modelslab.com/api/v7/video-fusion/image-to-video` - **Method**: POST ### Parameters - **`init_image`** (required): Upload the reference image - Type: file - **`init_audio`** (required): reference audio should have less than 30 sec - Type: file - **`model_id`** (optional): - Type: text ## Usage Examples ### cURL ```bash curl --request POST \ --url https://modelslab.com/api/v7/video-fusion/image-to-video \ --header "Content-Type: application/json" \ --data '{ "key": "YOUR_API_KEY", "model_id": "omni-human", "init_image": "https://assets.modelslab.com/generations/18011592-127a-4d6e-adf7-c66d1ce7693c", "init_audio": "https://assets.modelslab.com/generations/efc19902-2b68-4dac-aa8a-b84960651790" }' ``` ### Python ```python import requests response = requests.post( "https://modelslab.com/api/v7/video-fusion/image-to-video", headers={ "Content-Type": "application/json" }, json={ "key": "YOUR_API_KEY", "model_id": "omni-human", "init_image": "https://assets.modelslab.com/generations/18011592-127a-4d6e-adf7-c66d1ce7693c", "init_audio": "https://assets.modelslab.com/generations/efc19902-2b68-4dac-aa8a-b84960651790" } ) print(response.json()) ``` ### JavaScript ```javascript fetch("https://modelslab.com/api/v7/video-fusion/image-to-video", { method: "POST", headers: { "Content-Type": "application/json" }, body: JSON.stringify({ "key": "YOUR_API_KEY", "model_id": "omni-human", "init_image": "https://assets.modelslab.com/generations/18011592-127a-4d6e-adf7-c66d1ce7693c", "init_audio": "https://assets.modelslab.com/generations/efc19902-2b68-4dac-aa8a-b84960651790" }) }) .then(response => response.json()) .then(data => console.log(data)); ``` ## Links - [Model Playground](https://modelslab.com/models/Omnihuman/omni-human) - [API Documentation](https://docs.modelslab.com) - [ModelsLab Platform](https://modelslab.com)