Image models
Seedream
On this page
Seedream — fast, high-fidelity AI image generation & editing.
| modelId | bytedance-seedream |
| Modality | image |
| Pricing | See this model on the Pricing page for the current per-call price (with your markup). |
Operations
| Operation | Endpoint | Description |
|---|---|---|
| Text to image | POST /api/v1/generate | Base generation from a text prompt. |
| Poll task | GET /api/v1/task/{id}?model=bytedance-seedream | Retrieve state and result URLs. |
Input parameters
| Field | Type | Required | Values / example |
|---|---|---|---|
| prompt | textarea | required | Enter your text prompt to generate an image... |
| image_size | select | optional | square, square_hd, portrait_4_3, portrait_16_9, landscape_4_3, landscape_16_9 |
| guidance_scale | number | optional | — |
| seed | number | optional | Enter number... |
| enable_safety_checker | select | optional | false, true |
| nsfw_checker | select | optional | false, true |
Example request
bash
curl -X POST https://you.bot/api/v1/generate \
-H "Authorization: Bearer $YOUBOT_API_KEY" \
-H "Content-Type: application/json" \
-d '{"modelId":"bytedance-seedream","input":{"prompt":"A weathered brass diving helmet resting on wet cobblestones at dawn, tendrils of sea mist curling around it, warm amber light breaking through the fog, shallow depth of field, cinematic still, ultra-detailed.","image_size":"square_hd","guidance_scale":2.5,"seed":8,"enable_safety_checker":"true","nsfw_checker":"true"}}'