# Seedream 4.5 > Generate ultra-realistic 4K images with advanced prompt understanding, multi-angle consistency, and professional-grade editing—ideal for commercial visuals, ads, and creative workflows. ## Overview - **Model ID**: `seedream-4.5` - **Category**: image - **Provider**: byteplus - **Status**: model_ready - **Screenshot**: `https://assets.modelslab.com/generations/12e48383-03a5-411d-95c4-1fa191c5df46.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/images/text-to-image` - **Method**: POST ### Parameters - **`prompt`** (required): The text prompt for the type of image you want to generate - Type: textarea - **`aspect_ratio`** (required): - Type: select (options: 1:1, 4:3, 3:4, 16:9, 9:16, 3:2, 2:3, 21:9) - **`model_id`** (optional): Model ID - Type: text ## Usage Examples ### cURL ```bash curl --request POST \ --url https://modelslab.com/api/v7/images/text-to-image \ --header "Content-Type: application/json" \ --data '{ "key": "YOUR_API_KEY", "model_id": "seedream-4.5", "prompt": "Ultra-realistic cinematic scene of a man standing on top of a flying airplane, strong wind motion, dramatic clouds, intense action moment. The man is holding and launching a missile from his hands, bright ignition flames, smoke trail, shockwave lighting on his face, detailed clothing movement, photoreal textures, 4K sharpness, dynamic perspective, heroic composition, powerful atmosphere, volumetric light, high-speed realism, dramatic sky, ultra-detailed cinematic action shot.", "aspect_ratio": "1:1" }' ``` ### Python ```python import requests response = requests.post( "https://modelslab.com/api/v7/images/text-to-image", headers={ "Content-Type": "application/json" }, json={ "key": "YOUR_API_KEY", "model_id": "seedream-4.5", "prompt": "Ultra-realistic cinematic scene of a man standing on top of a flying airplane, strong wind motion, dramatic clouds, intense action moment. The man is holding and launching a missile from his hands, bright ignition flames, smoke trail, shockwave lighting on his face, detailed clothing movement, photoreal textures, 4K sharpness, dynamic perspective, heroic composition, powerful atmosphere, volumetric light, high-speed realism, dramatic sky, ultra-detailed cinematic action shot.", "aspect_ratio": "1:1" } ) print(response.json()) ``` ### JavaScript ```javascript fetch("https://modelslab.com/api/v7/images/text-to-image", { method: "POST", headers: { "Content-Type": "application/json" }, body: JSON.stringify({ "key": "YOUR_API_KEY", "model_id": "seedream-4.5", "prompt": "Ultra-realistic cinematic scene of a man standing on top of a flying airplane, strong wind motion, dramatic clouds, intense action moment. The man is holding and launching a missile from his hands, bright ignition flames, smoke trail, shockwave lighting on his face, detailed clothing movement, photoreal textures, 4K sharpness, dynamic perspective, heroic composition, powerful atmosphere, volumetric light, high-speed realism, dramatic sky, ultra-detailed cinematic action shot.", "aspect_ratio": "1:1" }) }) .then(response => response.json()) .then(data => console.log(data)); ``` ## Links - [Model Playground](https://modelslab.com/models/seedream-45-text-to-image/seedream-4.5) - [API Documentation](https://docs.modelslab.com) - [ModelsLab Platform](https://modelslab.com)