TokenLX
DUBAO

bytedance/doubao-seededit-3.0

from $0.03 per call0.09B  tokens servedImage

ByteDance Doubao — Chinese LLM family tuned for the Volcano Engine cloud and ByteDance ecosystem.

Key strengths

  • Chinese performance
  • Volcano Engine native
  • Good latency
  • Multi-size tiers

Use cases

  • Chinese products
  • Social / content
  • E-commerce
  • Internal tools
chinesebytedance

ByteDance's bytedance/doubao-seededit-3.0 is a state-of-the-art text-to-image generation model. It produces highly detailed, photorealistic and stylized imagery from natural-language prompts, with strong instruction following and accurate text rendering inside generated images.

Compatible with the OpenAI `/images/generations` endpoint shape, supporting prompt, size, seed, negative prompt, and resolution controls. Excellent for creative workflows, marketing assets, product visualization, and concept art at scale.

bytedance/doubao-seededit-3.0 is fully OpenAI-compatible — drop in your existing OpenAI Python or Node SDK and switch `baseURL` to `https://api.tokenlx.ai`. TokenLX transparently routes your requests to the optimal provider endpoint while preserving streaming, function-calling, and structured-output semantics.

Performance

Compare different providers across TokenLX · All locations.

Throughput
43
tok/s
Latency
129
ms
E2E Latency
200
ms
Tool Call Errors
0.07
%
Output Errors
0.39
%
Time to First Token
101
ms

Effective Pricing

Pricing is shown by the model billing method, using per-call or per-second prices and resolution tiers.

Per call
$0.03
Per call

Recent activity

Total usage per day on TokenLX (last 30 days).

Prompt
26.25M
Completion
61.69M
30d ago15d agotoday

Sample code & API

TokenLX normalizes requests and responses across providers. Use any OpenAI SDK or our native SDK.

from openai import OpenAI

client = OpenAI(
    base_url="https://api.tokenlx.ai/v1",
    api_key="sk-tokenlx-...",
)

response = client.images.generate(
    model="doubao-seededit-3.0",
    prompt="A futuristic city skyline at sunset, photorealistic",
    size="1024x1024",
    n=1,
)
print(response.data[0].url)

Replace sk-aihubrouter-… with your key from the dashboard.