Videoslash API
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"
  }' | jq

Poll GET /v1/creative-studio/generations/{id} until status is completed. Completed generations return outputUrl on cdn.videoslash.com.

Media parameters

NameTypeConstraintsDefaultDescription
image_inputarrayoptional · max items: 14[]Input image(s) for image-to-image generation. List of 1-14 images for single or multi-reference generation.

Settings parameters

NameTypeConstraintsDefaultDescription
sizeenumoptional · enum: 2K, 3K2KImage resolution: 2K (2048px) or 3K (3072px).
aspect_ratioenumoptional · enum: match_input_image, 1:1, 4:3, 3:4, 16:9, 9:16, 3:2, 2:3, 21:91:1Image aspect ratio. Use 'match_input_image' to automatically match the input image's aspect ratio.
sequential_image_generationenumoptional · enum: disabled, autodisabledGroup 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_imagesintegeroptional · min: 1 · max: 151Maximum number of images to generate when sequential_image_generation='auto'. Range: 1-15. Total images (input + generated) cannot exceed 15.
output_formatenumoptional · enum: png, jpegpngOutput image format.

On this page