Bytedance Seedream V5.0 Flash API Documentation

Bytedance Seedream V5.0 Flash API Documentation

Playground

Try it on WaveSpeedAI!

Seedream V5.0 Flash Text to Image by ByteDance generates images from text prompts faster and at lower cost than Seedream V5.0 Pro, with aspect ratio selection, multilingual text rendering, and 1K / 1.5K / 2K output at one price. Ready-to-use REST inference API, best performance, no coldstarts, affordable pricing.

Features

Seedream V5.0 Flash is the fast, lower-cost tier of Seedream 5.0. It shares Seedream V5.0 Pro’s capabilities — information-dense layouts, precise composition, and native multilingual text — and generates images faster at a lower price, for latency- and cost-sensitive image workflows.


Why Choose This?

  • Pro capabilities, Flash speed
    Same capability set as Seedream V5.0 Pro, tuned for faster generation.

  • One price for every resolution
    1k, 1.5k, and 2k all cost the same, so choose the tier your output needs.

  • Flexible aspect ratios
    Supports square, portrait, landscape, tall, wide, and cinematic aspect ratios.

  • Multilingual text rendering
    Render headlines, labels, and signage directly in the image in many languages.

  • Standard output formats
    Generate images in jpeg or png format.


Parameters

ParameterRequiredDescription
promptYesPositive prompt for the image generation. Describe the subject, scene, style, lighting, composition, and visual details.
aspect_ratioNoOutput aspect ratio. Options: 1:1, 1:2, 2:1, 1:3, 3:1, 2:3, 3:2, 3:4, 4:3, 4:5, 5:4, 9:16, 16:9, 9:21, or 21:9.
resolutionNoOutput resolution tier: 1k, 1.5k, or 2k.
output_formatNoOutput image format: jpeg or png.

How to Use

  1. Write your prompt — Describe the subject, scene, style, lighting, composition, and visual details.
  2. Choose aspect ratio — Select the layout that matches your target format.
  3. Choose resolution1k, 1.5k, or 2k; the price is the same.
  4. Choose output format — Select jpeg or png.
  5. Submit — Generate the final image.

Pricing

A flat $0.027 per image at every resolution.

ResolutionCost
1k$0.027
1.5k$0.027
2k$0.027

Best Use Cases

  • High-volume generation — Social posts, ad variants, thumbnails, and e-commerce imagery at scale.
  • Marketing visuals with text — Posters, banners, and promotional images with rendered copy.
  • Fast creative iteration — Explore compositions and copy quickly before a final render.
  • Localized assets — Produce the same creative with text in different languages.
  • Layout-specific assets — Generate square, portrait, landscape, tall, wide, or cinematic images.

Pro Tips

  • Put the exact text you want rendered in quotes and say where it goes.
  • Write in-image text in its target language.
  • Use detailed prompts with subject, composition, lighting, style, mood, and background details.
  • Since every resolution costs the same, pick 2k whenever the image will be cropped or printed.
  • Use 9:16 for vertical mobile content and 16:9 for widescreen layouts.
  • For hero assets that need the highest quality, re-run the final prompt on Seedream V5.0 Pro.

Authentication

For authentication details, please refer to the Authentication Guide.

API Endpoints

Submit Task & Query Result

set -euo pipefail

export WAVESPEED_API_KEY="your-api-key"

REQUEST_BODY=$(cat <<'JSON'
{
  "prompt": "A cinematic ocean wave at sunrise, highly detailed",
  "aspect_ratio": "1:1",
  "resolution": "1k",
  "output_format": "jpeg"
}
JSON
)

# 1. Submit the prediction.
SUBMIT_RESPONSE=$(curl --silent --show-error --fail-with-body \
  -X POST "https://api.wavespeed.ai/api/v3/bytedance/seedream-v5.0-flash" \
  -H "Authorization: Bearer ${WAVESPEED_API_KEY}" \
  -H "Content-Type: application/json" \
  -d "${REQUEST_BODY}")

TASK=$(printf '%s' "${SUBMIT_RESPONSE}" | jq 'if type == "object" and has("data") then .data else . end')
PREDICTION_ID=$(printf '%s' "${TASK}" | jq -r '.id // empty')
if [ -z "${PREDICTION_ID}" ]; then
  printf 'Submission response did not contain a prediction id
' >&2
  exit 1
fi
RESULT_URL="https://api.wavespeed.ai/api/v3/predictions/${PREDICTION_ID}/result"

# 2. Poll until the prediction finishes.
while true; do
  RESPONSE=$(curl --silent --show-error --fail-with-body \
    "${RESULT_URL}" \
    -H "Authorization: Bearer ${WAVESPEED_API_KEY}")
  RESULT=$(printf '%s' "${RESPONSE}" | jq 'if type == "object" and has("data") then .data else . end')
  STATUS=$(printf '%s' "${RESULT}" | jq -r '.status // empty')

  case "${STATUS}" in
    completed) printf '%s\n' "${RESULT}" | jq '.outputs'; break ;;
    failed|cancelled|timeout|deleted) printf '%s\n' "${RESULT}" | jq . >&2; exit 1 ;;
    *) sleep 2 ;;
  esac
done

Parameters

Task Submission Parameters

Request Parameters

ParameterTypeRequiredDefaultRangeDescription
promptstringYes-The positive prompt for the generation.
aspect_ratiostringNo1:11:1, 1:2, 2:1, 1:3, 3:1, 2:3, 3:2, 3:4, 4:3, 4:5, 5:4, 9:16, 16:9, 9:21, 21:9The aspect ratio of the generated image.
resolutionstringNo1k1k, 1.5k, 2kThe output resolution tier. All tiers are billed at the same price.
output_formatstringNojpegjpeg, pngThe format of the output image.
enable_sync_modebooleanNofalse-If set to `true`, the request attempts to wait for the generated result and return outputs in the same response. If the result is not ready within the sync wait window, the API can return a timeout body while the task continues processing. This option is only available via the API and is supported only by some models.
enable_base64_outputbooleanNofalse-If set to `true`, the prediction's `output` strings are returned as **naked base64** (no `data:<mime>;base64,` prefix). When `false` (default), outputs are returned as URLs pointing to our CDN.

Response Parameters

ParameterTypeDescription
codeintegerHTTP status code (e.g., 200 for success)
messagestringStatus message (e.g., “success”)
data.idstringUnique identifier for the prediction, Task Id
data.modelstringModel ID used for the prediction
data.outputsarrayOutput values, usually URL strings; some models return text strings or structured result objects (empty when status is not completed)
data.urlsobjectObject containing related API endpoints
data.statusstringTask status. completed is successful; failed, cancelled, timeout, and deleted are failure terminal statuses.
data.created_atstringISO timestamp of when the request was created (e.g., “2023-04-01T12:34:56.789Z”)
data.errorstringError message (empty if no error occurred)
data.timingsobjectObject containing timing details
data.timings.inferenceintegerInference time in milliseconds

Result Request Parameters

ParameterTypeRequiredDefaultDescription
idstringYes-Task ID

Result Response Parameters

ParameterTypeDescription
codeintegerHTTP status code (e.g., 200 for success)
messagestringStatus message (e.g., “success”)
dataobjectThe prediction data object containing all details
data.idstringUnique identifier for the prediction
data.modelstringModel ID used for the prediction
data.outputsarray<string | object>Array of generated outputs (empty when status is not completed). Items are usually URL strings, but may be text strings or structured result objects, depending on the model.
data.urlsobjectObject containing related API endpoints
data.statusstringStatus: completed is successful; failed, cancelled, timeout, and deleted are failure terminal statuses
data.created_atstringISO timestamp of when the request was created
data.errorstringError message (empty if no error occurred)
data.timingsobjectObject containing timing details
data.timings.inferenceintegerInference time in milliseconds
© 2026 WaveSpeedAI. All rights reserved.