Image models
Seedream 5.0 Pro
On this page
Seedream 5.0 Pro — fast, high-fidelity AI image generation & editing.
| modelId | seedream-5-pro-image-to-image, seedream-5-pro-text-to-image |
| Modality | image |
| Pricing | See this model on the Pricing page for the current per-call price (with your markup). |
Operations
| Operation | modelId | Endpoint | Required input |
|---|---|---|---|
| Pro Image To Image | seedream-5-pro-image-to-image | POST /api/v1/generate | prompt, image_urls, aspect_ratio, quality, output_format |
| Pro Text To Image | seedream-5-pro-text-to-image | POST /api/v1/generate | prompt, aspect_ratio, quality, output_format |
| Poll task | — | GET /api/v1/task/{id}?model=seedream-5-pro-image-to-image | — |
Pro Image To Image — seedream-5-pro-image-to-image
| Field | Type | Required | Values / example |
|---|---|---|---|
| prompt | string | Yes | A text description of the image you want to generate Max 3000 characters. (default: Replace the plain background with a sunlit pale-marble surface, add soft studio reflections and a gentle warm rim light, keep the subject crisp and true to color.) |
| image_urls | string[] | Yes | Upload an image file to use as input for the API (image URL) |
| aspect_ratio | string | Yes | Width-height ratio of the image, determining its visual form. (options: 1:1 | 4:3 | 3:4 | 16:9 | 9:16 | 2:3 | 3:2) (default: 1:1) |
| quality | string | Yes | Basic outputs 1K images, while High outputs 2K images. (options: basic | high) (default: basic) |
| output_format | string | Yes | Options: png | jpeg (default: png) |
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-pro-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"}}'Pro Text To Image — seedream-5-pro-text-to-image
| Field | Type | Required | Values / example |
|---|---|---|---|
| prompt | string | Yes | A text description of the image you want to generate Max 3000 characters. (default: A translucent pink axolotl smiling in a lush planted aquarium, tiny silver bubbles clinging to its feathery gills, soft aquarium light glowing through the water, macro cinematic still, ultra-detailed.) |
| aspect_ratio | string | Yes | Width-height ratio of the image, determining its visual form. (options: 1:1 | 4:3 | 3:4 | 16:9 | 9:16 | 2:3 | 3:2) (default: 1:1) |
| quality | string | Yes | Basic outputs 1K images, while High outputs 2K images. (options: basic | high) (default: basic) |
| output_format | string | Yes | Options: png | jpeg (default: png) |
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-pro-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"}}'