Routeway Logo
Back to Models
ByteDance

SeeDream 3.0

Available

Description

Generate images using Bytedance's SeedDream 3.0 model. Native 2K high resolution output with exceptional text layout, accurate text generation, photorealistic portraits, and fast generation.

At a Glance

Key pricing and model details available for this model.

Starting price

$0.04

per image

Hallucination rate

0%

Supported sizes

1024x1024, 1152x896, 896x1152, 1344x768, 768x1344, 1536x672, 672x1536, 2016x672

Image Pricing

Image generation pricing currently exposed by the models API.

Starting price

$0.04

per image

Resolution Pricing

Resolution-specific prices returned for this image model.

1024x1024$0.04
1152x896$0.04
1344x768$0.04
1536x672$0.04
2016x672$0.04
672x1536$0.04
768x1344$0.04
896x1152$0.04
auto$0.04

Image Details

Additional image-related pricing and format support.

Pricing unitper image
Supported sizes
1024x1024
1152x896
896x1152
1344x768
768x1344
1536x672
672x1536
2016x672

Feature Availability

Capabilities explicitly listed in the current payload.

Image

Available

Yes

Vision

Not listed

No

Function calling

Not listed

No

Reasoning

Not listed

No

Benchmark Summary

Overall image benchmark metrics currently available. CI95: -10/10

Overall ELO

1150

Rank

#17

Appearances

4,287

Category Breakdown

Available per-category ELO results from the current benchmark payload.

Style Traditional Art

260 appearances · CI95 -44/44

1248

ELO

Style General Photorealistic

1,748 appearances · CI95 -17/17

1211

ELO

Subject People: Groups Activities

440 appearances · CI95 -34/34

1211

ELO

Subject Nature Landscapes

434 appearances · CI95 -34/34

1208

ELO

Subject Fantasy Mythical

624 appearances · CI95 -29/29

1206

ELO

Subject People: Portraits

484 appearances · CI95 -32/32

1166

ELO

Subject Futuristic Sci-fi

551 appearances · CI95 -30/30

1154

ELO

Subject Physical Spaces

592 appearances · CI95 -29/29

1152

ELO

Style Anime

309 appearances · CI95 -41/41

1132

ELO

Subject Commercial

246 appearances · CI95 -45/45

1119

ELO

Style Cartoon Illustration

373 appearances · CI95 -36/36

1116

ELO

Style Graphic Design Digital Rendering

1,192 appearances · CI95 -20/20

1075

ELO

Style Vintage Retro

187 appearances · CI95 -52/52

1068

ELO

Subject Text Typography

144 appearances · CI95 -59/59

1043

ELO

Code Samples

Quick start with the Routeway API

const response = await fetch('https://api.routeway.ai/v1/images/generations', {
  method: 'POST',
  headers: {
    'Authorization': 'Bearer <YOUR_API_KEY>',
    'Content-Type': 'application/json'
  },
  body: JSON.stringify({
    model: 'seedream-v3',
    prompt: 'A futuristic city skyline at sunset',
    size: '1024x1024',
  })
});

const imageData = await response.json();
console.log(imageData);