Creative studioGeneratedModels
Seedream 5 Lite
Creative Studio image model reference for the public API.
Seedream 5 Lite
Public model ID: seedream-5-lite
Asset type: image
Category: Generation
Starting credits: 0.2 (defaults: 0.2)
Prompt required.
Start a generation
curl -s -X POST "$API_BASE_URL/v1/creative-studio/generations" \
-H "Authorization: Bearer vsl_YOUR_KEY" \
-H "Content-Type: application/json" \
-d '{
"modelId": "seedream-5-lite",
"prompt": "Your prompt here",
"image_input": ["https://example.com/reference.jpg"],
"size": "2K"
}' | jqPoll GET /v1/creative-studio/generations/{id} until status is completed. Completed generations return outputUrl on cdn.videoslash.com.
Media parameters
| Name | Type | Constraints | Default | Description |
|---|---|---|---|---|
image_input | array | optional · max items: 14 | [] | Input image(s) for image-to-image generation. List of 1-14 images for single or multi-reference generation. |
Settings parameters
| Name | Type | Constraints | Default | Description |
|---|---|---|---|---|
size | enum | optional · enum: 2K, 3K | 2K | Image resolution: 2K (2048px) or 3K (3072px). |
aspect_ratio | enum | optional · enum: match_input_image, 1:1, 4:3, 3:4, 16:9, 9:16, 3:2, 2:3, 21:9 | 1:1 | Image aspect ratio. Use 'match_input_image' to automatically match the input image's aspect ratio. |
sequential_image_generation | enum | optional · enum: disabled, auto | disabled | Group image generation mode. 'disabled' generates a single image. 'auto' lets the model decide whether to generate multiple related images (e.g., story scenes, character variations). |
max_images | integer | optional · min: 1 · max: 15 | 1 | Maximum number of images to generate when sequential_image_generation='auto'. Range: 1-15. Total images (input + generated) cannot exceed 15. |
output_format | enum | optional · enum: png, jpeg | png | Output image format. |