# Gen4 Text to Image Turbo > Transform static images into dynamic videos with enhanced character consistency and realistic motion, generating 10-second clips in 30 seconds at 720p resolution. ## Overview - **Model ID**: `gen4_turbo` - **Category**: video - **Provider**: runway_ml - **Status**: model_ready - **Screenshot**: `https://assets.modelslab.com/generations/be67775f-186d-498b-a9a3-392514caec8d.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 - **`prompt`** (required): - Type: textarea - Example: Enter prompt for video - **`init_image`** (required): - Type: file - **`portrait`** (required): toggle lon when you want to generate portrait video - Type: toggle ## 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": "gen4_turbo", "prompt": "waving her hair, dancing , jumping in style", "init_image": "https://assets.modelslab.com/generations/3a80f2a5-1a57-4f7a-a6fc-3e030a3e041c", "portrait": false }' ``` ### 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": "gen4_turbo", "prompt": "waving her hair, dancing , jumping in style", "init_image": "https://assets.modelslab.com/generations/3a80f2a5-1a57-4f7a-a6fc-3e030a3e041c", "portrait": False } ) 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": "gen4_turbo", "prompt": "waving her hair, dancing , jumping in style", "init_image": "https://assets.modelslab.com/generations/3a80f2a5-1a57-4f7a-a6fc-3e030a3e041c", "portrait": false }) }) .then(response => response.json()) .then(data => console.log(data)); ``` ## Links - [Model Playground](https://modelslab.com/models/gen4_turbo/gen4_turbo) - [API Documentation](https://docs.modelslab.com) - [ModelsLab Platform](https://modelslab.com)