Skip to content
Docs menu

Image models

Seedream 5.0 Pro

On this page

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

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

Operations

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

Pro Image To Image — seedream-5-pro-image-to-image

FieldTypeRequiredValues / example
promptstringYesA text description of the image you want to generate Max 3000 characters. (example: Create a premium 3:4 editorial infographic poster titled exactly: “THE ANATOMY OF A HIT” Hero visual: one gigantic transparent cassette tape shown in dramatic… — full value in the request example)
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) (default: 1:1)
qualitystringYesBasic outputs 1K images, while High outputs 2K images. (options: basic | high) (default: basic)
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":"Create a premium 3:4 editorial infographic poster titled exactly:\n\n“THE ANATOMY OF A HIT”\n\nHero visual: one gigantic transparent cassette tape shown in dramatic three-quarter perspective, occupying most of the frame. The cassette is sliced open like a precision architectural cutaway. Inside it is a photorealistic sold-out concert: a tiny performer on a blazing stage, thousands of fans, lighting trusses, speakers, backstage corridors and a control booth integrated naturally into the cassette mechanism.\n\nThe two tape reels become circular concert zones; magnetic tape transforms into a glowing red waveform winding through the structure.\n\nUse strong near-far depth, intentional cropping and asymmetry. One corner of the cassette extends beyond the frame. Dark foreground, illuminated interior, deep black negative space.\n\nAdd precise editorial labels with thin leader lines:\n\n“18,400 FANS”\n“92 MIN SET”\n“24 LIGHTING CUES”\n“128 BPM”\n“01:37 PEAK ENERGY”\n\nLabel key areas:\n“STAGE”\n“CROWD”\n“FOH”\n“BACKSTAGE”\n“SOUND”\n\nSmall footer:\n“ONE NIGHT / ONE SONG / ONE MEMORY”\n\nTypography: bold condensed headline, compact technical labels, sharp hierarchy, clean spacing. Do not let information overpower the hero object.\n\nColor system: deep black, transparent smoked acrylic, vivid signal red, warm amber skin light, sharp white stage beams.\n\nMaterials must feel physically real: scratched cassette plastic, metal screws, magnetic tape, fingerprints, condensation, concert haze and realistic lighting.\n\nThe result should feel like an award-winning music magazine cover crossed with a museum cutaway and a global festival campaign — tactile, intelligent, strange, energetic and instantly readable.","image_urls":["https://you.bot/examples/grok-imagine-text-to-image.jpg"],"aspect_ratio":"1:1","quality":"basic"}}'

Pro Text To Image — seedream-5-pro-text-to-image

FieldTypeRequiredValues / example
promptstringYesA text description of the image you want to generate Max 3000 characters. (example: A translucent pink axolotl smiling in a lush planted aquarium, tiny silver bubbles clinging to its feathery gills, soft aquarium light glowing through the… — full value in the request example)
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) (default: 1:1)
qualitystringYesBasic outputs 1K images, while High outputs 2K images. (options: basic | high) (default: basic)
output_formatstringYesOptions: 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 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":"1:1","quality":"basic","output_format":"png"}}'