Skip to content
Docs menu

Image models

Seedream 5.0 Lite

On this page

Seedream 5.0 Lite — fast, high-fidelity AI image generation & editing.

modelIdseedream-5-lite-text-to-image, seedream-5-lite-image-to-image
Modalityimage
PricingSee this model on the Pricing page for the current per-call price (with your markup).

Operations

OperationmodelIdEndpointRequired input
Lite Text To Imageseedream-5-lite-text-to-imagePOST /api/v1/generateprompt, aspect_ratio, quality, output_format
Lite Image To Imageseedream-5-lite-image-to-imagePOST /api/v1/generateprompt, image_urls, aspect_ratio, quality, output_format
Poll taskGET /api/v1/task/{id}?model=seedream-5-lite-text-to-image

Lite Text To Image — seedream-5-lite-text-to-image

FieldTypeRequiredValues / example
promptstringYesA text description of the image you want to generate Max 2995 characters. (default: A vintage brass diving helmet resting on wet cobblestones at dawn, seawater beading on its polished surface, faint harbor lights glowing in the misty background, hyper-detailed cinematic still.)
aspect_ratiostringYesWidth-height ratio of the image, determining its visual form. (options: 1:1 | 4:3 | 3:4 | 16:9 | 9:16 | 2:3 | 3:2 | 21:9) (default: 1:1)
qualitystringYesBasic outputs 2K images, while High outputs 3K images. (options: basic | high) (default: basic)
output_formatstringYesOptions: png | jpeg (default: png)
nsfw_checkerbooleanNoA configurable parameter. Defaults to true in the Playground. (true/false) (default: true)
bash
curl -X POST https://you.bot/api/v1/generate \
  -H "Authorization: Bearer $YOUBOT_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"modelId":"seedream-5-lite-text-to-image","input":{"prompt":"A photorealistic portrait of a red fox in a snowy forest, soft morning light, shallow depth of field, 85mm.","aspect_ratio":"1:1","quality":"basic","output_format":"png","nsfw_checker":true}}'

Lite Image To Image — seedream-5-lite-image-to-image

FieldTypeRequiredValues / example
promptstringYesA text description of the image you want to generate Max 2996 characters. (default: Turn this into a layered paper-cut diorama of a deer leaping through birch trees, warm depth between the cut layers and delicate, softly shadowed edges.)
image_urlsstring[]YesUpload an image file to use as input for the API (image URL)
aspect_ratiostringYesWidth-height ratio of the image, determining its visual form. (options: 1:1 | 4:3 | 3:4 | 16:9 | 9:16 | 2:3 | 3:2 | 21:9) (default: 1:1)
qualitystringYesBasic outputs 2K images, while High outputs 3K images. (options: basic | high) (default: basic)
output_formatstringYesOptions: png | jpeg (default: png)
nsfw_checkerbooleanNoA configurable parameter. Defaults to true in the Playground. (true/false) (default: true)
bash
curl -X POST https://you.bot/api/v1/generate \
  -H "Authorization: Bearer $YOUBOT_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"modelId":"seedream-5-lite-image-to-image","input":{"prompt":"A photorealistic portrait of a red fox in a snowy forest, soft morning light, shallow depth of field, 85mm.","image_urls":["https://example.com/input.jpg"],"aspect_ratio":"1:1","quality":"basic","output_format":"png","nsfw_checker":true}}'