BytedancePaidOperationalModerated
Doubao Seedance 1.0 Pro Fast
API model name: doubao-seedance-1-0-pro-fast-251015
Doubao Seedance 1.0 Pro Fast is Bytedance's music 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
Specifications
- Provider
- Bytedance
- Type
- music generation model
What is Doubao Seedance 1.0 Pro Fast used for?
- Music & audio generation — background tracks, jingles and soundscapes.
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 Seedance 1.0 Pro Fast — frequently asked questions
- How much does Doubao Seedance 1.0 Pro Fast cost?
- Doubao Seedance 1.0 Pro Fast is billed per generation rather than per token. See the pricing page for the current rate.
- What can Doubao Seedance 1.0 Pro Fast do?
- Doubao Seedance 1.0 Pro Fast is Bytedance's music generation model, accessible through the Api.Airforce API.
- Is Doubao Seedance 1.0 Pro Fast free to use?
- Doubao Seedance 1.0 Pro Fast is a paid, pay-as-you-go model — no subscription, you are only charged for usage.
- How do I use Doubao Seedance 1.0 Pro Fast via the API?
- Doubao Seedance 1.0 Pro Fast is OpenAI-compatible. Point any OpenAI SDK at https://api.airforce/v1 and pass the model ID doubao-seedance-1-0-pro-fast-251015 with your Api.Airforce API key.
- Who makes Doubao Seedance 1.0 Pro Fast?
- Doubao Seedance 1.0 Pro Fast is Bytedance's music generation model, served through the unified Api.Airforce gateway alongside 100+ other models.
Loading live metrics…
Loading live metrics…
Loading live metrics…
Use Doubao Seedance 1.0 Pro Fast via the API
OpenAI-compatible — point any OpenAI SDK at https://api.airforce/v1 and pass doubao-seedance-1-0-pro-fast-251015 as the model.
cURL
curl https://api.airforce/v1/chat/completions \
-H "Authorization: Bearer $AIRFORCE_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"model": "doubao-seedance-1-0-pro-fast-251015",
"messages": [{ "role": "user", "content": "Hello!" }]
}'Python
from openai import OpenAI
client = OpenAI(base_url="https://api.airforce/v1", api_key="$AIRFORCE_API_KEY")
r = client.chat.completions.create(
model="doubao-seedance-1-0-pro-fast-251015",
messages=[{"role": "user", "content": "Hello!"}],
)
print(r.choices[0].message.content)JavaScript
import OpenAI from "openai";
const client = new OpenAI({ baseURL: "https://api.airforce/v1", apiKey: process.env.AIRFORCE_API_KEY });
const r = await client.chat.completions.create({
model: "doubao-seedance-1-0-pro-fast-251015",
messages: [{ role: "user", content: "Hello!" }],
});
console.log(r.choices[0].message.content);