BytedancePaidOperational
Doubao Seedream 3.0 T2i
API model name: doubao-seedream-3-0-t2i-250415
Doubao Seedream 3.0 T2i is Bytedance's image generation model, served on the Api.Airforce unified API. Access it through the OpenAI-compatible API with one key, alongside 100+ other models on Api.Airforce.
Pricing
Resolutions: 1:1, 16:9, 9:16
Qualities: standard
Specifications
- Provider
- Bytedance
- Type
- image generation model
What is Doubao Seedream 3.0 T2i used for?
- Image generation — marketing visuals, concept art, product shots and illustrations.
Related models
Doubao 1.5 Thinking ProBytedance · $0.36 / 1MDoubao 1.5 Thinking Vision ProBytedance · $0.56 / 1MDoubao 1.5 Ui TarsBytedance · $0.65 / 1MDoubao 1.5 Lite 32kBytedance · $0.07 / 1MDoubao 1.5 Pro 32kBytedance · $0.14 / 1MDoubao 1.5 Vision LiteBytedance · $0.27 / 1MDoubao 1.5 Vision ProBytedance · $0.56 / 1MDoubao 1.5 Vision Pro 32kBytedance · $0.14 / 1MDoubao Embedding Large TextBytedance · $0.13 / 1MDoubao Embedding TextBytedance · $0.13 / 1MDoubao Embedding VisionBytedance · $101.11 / 1MDoubao Lite 128kBytedance · $0.21 / 1M
Doubao Seedream 3.0 T2i — frequently asked questions
- How much does Doubao Seedream 3.0 T2i cost?
- Doubao Seedream 3.0 T2i is billed per generation rather than per token. See the pricing page for the current rate.
- What can Doubao Seedream 3.0 T2i do?
- Doubao Seedream 3.0 T2i is Bytedance's image generation model, accessible through the Api.Airforce API.
- Is Doubao Seedream 3.0 T2i free to use?
- Doubao Seedream 3.0 T2i is a paid, pay-as-you-go model — no subscription, you are only charged for usage.
- How do I use Doubao Seedream 3.0 T2i via the API?
- Doubao Seedream 3.0 T2i is OpenAI-compatible. Point any OpenAI SDK at https://api.airforce/v1 and pass the model ID doubao-seedream-3-0-t2i-250415 with your Api.Airforce API key.
- Who makes Doubao Seedream 3.0 T2i?
- Doubao Seedream 3.0 T2i is Bytedance's image generation model, served through the unified Api.Airforce gateway alongside 100+ other models.
Loading live metrics…
Loading live metrics…
Loading live metrics…
Use Doubao Seedream 3.0 T2i via the API
OpenAI-compatible — point any OpenAI SDK at https://api.airforce/v1 and pass doubao-seedream-3-0-t2i-250415 as the model.
cURL
curl https://api.airforce/v1/images/generations \
-H "Authorization: Bearer $AIRFORCE_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"model": "doubao-seedream-3-0-t2i-250415",
"prompt": "a red panda coding"
}'Python
from openai import OpenAI
client = OpenAI(base_url="https://api.airforce/v1", api_key="$AIRFORCE_API_KEY")
img = client.images.generate(model="doubao-seedream-3-0-t2i-250415", prompt="a red panda coding")
print(img.data[0].url)JavaScript
import OpenAI from "openai";
const client = new OpenAI({ baseURL: "https://api.airforce/v1", apiKey: process.env.AIRFORCE_API_KEY });
const img = await client.images.generate({ model: "doubao-seedream-3-0-t2i-250415", prompt: "a red panda coding" });
console.log(img.data[0].url);