Seedream 5.0 Lite
ImageNot available
Bytedance Seedream 5.0 Lite image-to-image with up to 14 reference images.
- Type
- Image to Image
- Billed
- per img
- Provider
- Bytedance
Pricing
/ imgQuality: Basic$0.08 / img
Quality: High$0.08 / img
Supported parameters
modelSettings- Promptprompt
- Image Inputimage_urls
- Aspect Ratioaspect_ratio
- Qualityquality
- Nsfw Checkernsfw_checker
Code examples
POST /v1/generationsGenerations are async — the request returns immediately with an id; poll for the result.
python
import requests
response = requests.post(
"https://api.modelstack.cc/v1/generations",
headers={"Authorization": "Bearer sk_YOUR_API_KEY"},
json={
"type": "IMAGE_TO_IMAGE",
"prompt": "A serene mountain landscape at sunset",
"model": "bytedance/seedream-5-lite",
"modelSettings": {
"aspect_ratio": "16:9"
}
},
)
generation_id = response.json()["data"]["id"]
# Poll for the result
result = requests.get(
f"https://api.modelstack.cc/v1/generations/{generation_id}",
headers={"Authorization": "Bearer sk_YOUR_API_KEY"},
).json()
print(result["data"]["status"])Related models
Other generation types for this model
More from Bytedance
Frequently asked questions
How is Seedream 5.0 Lite billed on ModelStack?expand_more
Seedream 5.0 Lite (Image to Image) is billed at a flat, prepaid rate of $0.08 / img — generation pricing has no tier-based discounts. Final request costs are available in the console.
What other generation types does Seedream 5.0 Lite support?expand_more
Besides Image to Image, Seedream 5.0 Lite also supports: Text to Image.
Which parameters does Seedream 5.0 Lite support?expand_more
Seedream 5.0 Lite supports: Prompt, Image Input, Aspect Ratio, Quality, Nsfw Checker.
How can I generate with Seedream 5.0 Lite?expand_more
Use the Generate composer in your dashboard, or call the API directly with model `bytedance/seedream-5-lite` and type `IMAGE_TO_IMAGE` — see the code example above.