Enjoy 50% OFF Vidu Q3 & Q3 Pro models • Only on WaveSpeedAI | May 20 – Jun 2
ByteDance·image·From $0.035/run

Seedream 5 Lite API

ByteDance Seedream 5 Lite — newest cost-optimized image model, tuned for real-time editing pipelines and high-throughput creative work.

Seedream 5 Lite sample output

About the Seedream 5 Lite API

What Seedream 5 Lite does, how it fits in the ByteDance model lineup, and why teams reach for it.

Seedream 5 Lite is a image generation and editing model from ByteDance, available through the WaveSpeedAI REST API. ByteDance Seedream 5 Lite — newest cost-optimized image model, tuned for real-time editing pipelines and high-throughput creative work.

The Seedream 5 Lite family on WaveSpeedAI ships 4 REST endpoints covering Text-To-Image, Image-To-Image workflows. Each variant carries its own pricing, parameter knobs, and example outputs — pick the one that matches your input modality and production constraints, or call several from the same API key to compose multi-step pipelines.

Run Seedream 5 Lite through the same API key, billing account, and rate-limit envelope you use for the other 1,000+ AI models on WaveSpeedAI. No separate vendor setup, no per-provider SDKs, no per-vendor rate-limit envelopes — one integration covers everything from text-to-image and text-to-video through audio synthesis, 3D generation, upscaling, and editing.

All Seedream 5 Lite API endpoints

4 endpoints available now on WaveSpeedAI — pick the variant that matches your workflow.

See Seedream 5 Lite in action

Real outputs generated by the Seedream 5 Lite API. Hover any video to preview, click to open the full-size viewer.

How to use the Seedream 5 Lite API

Four steps from signup to a finished generation. Full Python, Node.js, and cURL examples are in the API section below.

  1. 1

    Get an API key

    Sign up for a WaveSpeedAI account and copy your API key from the dashboard. New accounts come with free starter credits — enough to run the playground a few dozen times before billing kicks in.

  2. 2

    Submit a prediction

    POST your input as JSON to https://api.wavespeed.ai/api/v3/bytedance/seedream-v5.0-lite. The endpoint returns a prediction id immediately — generations are async so you don't hold an open connection during inference.

  3. 3

    Poll for completion

    GET https://api.wavespeed.ai/api/v3/predictions/{request_id}/result every 1-2 seconds. The response includes a status field; keep polling until it flips from "queued" or "processing" to "completed".

  4. 4

    Read the output URL

    Once status is "completed", read the URL from data.outputs[0]. The URL points to your generated media on the WaveSpeedAI CDN — image, video, audio, or 3D file depending on the Seedream 5 Lite variant you called.

What you can build with Seedream 5 Lite

Common workflows developers and creators use the Seedream 5 Lite API for.

Real-time creative iteration

Sub-second generation makes Seedream 5 Lite suitable for interactive creator tools — image variations that feel instant during a design session.

realtimeinteractivetools

High-volume A/B testing

Spin up dozens of creative variants for paid-media A/B testing at a per-image cost that makes statistical-significance volumes affordable.

a/badsvolume

Editing pipeline workflows

Fast iteration cycles on edit endpoints — adjust lighting, swap subjects, refine compositions without the latency of slower top-tier models.

editpipelinefast

Marketing content templates

Generate template-driven marketing assets (sale banners, event flyers, product cards) at scale, with reliable typography for product names and prices.

templatemarketingbanners

Multi-language text-in-image

CJK text rendering inherited from the Seedream lineage — useful for localized marketing where the same template ships in 4-6 languages.

localizationcjktext

Tips for prompting Seedream 5 Lite

Practical advice for getting better outputs from Seedream 5 Lite — drawn from the patterns that work across image models in production pipelines.

Describe lighting, composition, and style — not just subject

Move past 'a cat' to 'a tabby cat on a windowsill, soft afternoon light streaming in, shallow depth of field, cinematic 35mm composition'. Subject + scene + lighting + camera language is the prompt formula that pulls best from image-model training data.

Use style anchors instead of artist names

'In the style of editorial photography' or 'studio product shot, white seamless background' beats vague 'high quality, masterpiece' boilerplate AND avoids the legal / licensing concerns that come with naming living artists in commercial work.

Specify resolution and aspect ratio explicitly

Don't rely on defaults. Set the target aspect ratio (1:1, 4:3, 16:9) and resolution up front. Cropping or upscaling later loses fidelity that the model could have placed correctly in the first generation.

Iterate on a locked seed before re-rolling

Lock the seed, change one prompt element at a time. Much faster than re-rolling random seeds for every change — you isolate cause-and-effect on each prompt edit and reach the target image with fewer total generations.

Use the edit endpoint for refinements, not full re-generation

Generate the base image once, then use the model's edit / inpaint endpoint to refine specific elements — text, lighting, individual subjects. Edits preserve everything you liked about the base and cost less per iteration than full re-generations.

Seedream 5 Lite API pricing

Pricing is per-output. The final charge scales with the parameters you set in each variant's playground (resolution, duration, output count, references).

EndpointTypeStarting price
bytedance/seedream-v5.0-lite/sequentialtext-to-image$0.035
bytedance/seedream-v5.0-litetext-to-image$0.035
bytedance/seedream-v5.0-lite/edit-sequentialimage-to-image$0.035
bytedance/seedream-v5.0-lite/editimage-to-image$0.035

Call the Seedream 5 Lite API

Sign up for an API key at wavespeed.ai/accesskey, then submit a prediction via REST. The playground generates ready-to-paste samples for any combination of inputs.

HTTP example
# 1. Submit a prediction
curl -X POST "https://api.wavespeed.ai/api/v3/bytedance/seedream-v5.0-lite" \
  -H "Content-Type: application/json" \
  -H "Authorization: Bearer $WAVESPEED_API_KEY" \
  -d '{}'

# 2. Poll the result until status = "completed"
curl -X GET "https://api.wavespeed.ai/api/v3/predictions/{request_id}/result" \
  -H "Authorization: Bearer $WAVESPEED_API_KEY"

# Read the output URL from data.outputs[0].
Node.js example
// npm install wavespeed
const WaveSpeed = require('wavespeed');
const client = new WaveSpeed(); // reads WAVESPEED_API_KEY

const result = await client.run("bytedance/seedream-v5.0-lite", {});
console.log(result.outputs[0]); // → URL of the generated output
Python example
# pip install wavespeed
import wavespeed

output = wavespeed.run(
    "bytedance/seedream-v5.0-lite",
    {}
)
print(output["outputs"][0])  # → URL of the generated output

Seedream 5 Lite vs alternatives

When to pick Seedream 5 Lite over similar models on WaveSpeedAI.

Seedream 5 Lite vs Seedream 4.5

5 Lite is faster and roughly half the price. 4.5 still wins on complex prompts and multi-element compositions where instruction following matters more than throughput.

Seedream 5 Lite vs Nano Banana 2

Both target the cost-optimized image-gen tier. Seedream 5 Lite is cheaper and better at CJK text; Nano Banana 2 handles English typography and Western editorial styles better.

Seedream 5 Lite vs Flux Schnell

Both target speed/cost. Flux Schnell has slightly stronger generic Western aesthetics; Seedream 5 Lite wins on CJK text, structured layouts, and the bundled edit endpoint.

Seedream 5 Lite API — Frequently asked questions

Pricing, license, integration — common questions about running Seedream 5 Lite on WaveSpeedAI.

What is the Seedream 5 Lite API?

Seedream 5 Lite is a ByteDance image generation model exposed as a REST API on WaveSpeedAI. ByteDance Seedream 5 Lite — newest cost-optimized image model, tuned for real-time editing pipelines and high-throughput creative work. You can call it programmatically or try it from the playground linked above.

How do I call the Seedream 5 Lite API?

Sign up for a WaveSpeedAI account, copy your API key from /accesskey, then POST to https://api.wavespeed.ai/api/v3/bytedance/seedream-v5.0-lite with your input as JSON. The endpoint returns a prediction id; poll the prediction endpoint until status flips to "completed", then read the output URL from data.outputs[0]. Full Python / Node.js / cURL examples are above.

How much does the Seedream 5 Lite API cost?

Seedream 5 Lite starts at $0.035 per run. The exact cost scales with the parameters you set (resolution, duration, output count, references). The live cost preview next to the Generate button in the playground shows the exact price for your current input.

Which Seedream 5 Lite variants are available?

WaveSpeedAI hosts 4 Seedream 5 Lite endpoints: bytedance/seedream-v5.0-lite/sequential, bytedance/seedream-v5.0-lite, bytedance/seedream-v5.0-lite/edit-sequential, bytedance/seedream-v5.0-lite/edit. Each variant has its own playground page and pricing.

Can I use Seedream 5 Lite outputs commercially?

Commercial usage rights follow the ByteDance model license. Most ByteDance models permit commercial output use; see each model's playground page for the specific license summary, and WaveSpeedAI's Terms of Service for platform-level conditions.

Why use Seedream 5 Lite on WaveSpeedAI instead of going direct?

One API key + one billing account across Seedream 5 Lite AND 1,000+ other AI models from other providers. No per-vendor SDK setup, no separate rate-limit envelopes, no rewrite-per-vendor integration code. Pricing is typically at parity with or below ByteDance's direct API.

About ByteDance

The team behind Seedream 5 Lite and the broader ByteDance model lineup on WaveSpeedAI.

ByteDance — the company behind TikTok, CapCut, and Doubao — runs one of the largest AI research operations in the world. Its Seed and Doubao teams ship state-of-the-art models for video generation (Seedance), image generation and editing (Seedream, Nano Banana), and avatar / lip-sync work. Models are trained on internal-scale data and shipped to production through ByteDance's consumer apps before being released as APIs.

Start building with Seedream 5 Lite on WaveSpeedAI

Free starter credits on signup. One API key across 1,000+ AI models from ByteDance and every other provider.