Bytedance Seedance 2.0 (Text To Video) (bytedance/seedance-2.0) is priced at $0.014 per output second through AIgateway. AIgateway charges pass-through on the underlying ByteDance rate plus a 5% platform fee applied at credit top-up — nothing per-call, no monthly minimum. $5 signup credit on new accounts.
AIgateway bills at the same per-token rate ByteDance publishes. There's no inflated sticker price; the model-vendor's invoice and your gateway invoice agree on the token count and unit cost. Usage is aggregated to the nearest fraction of a cent in D1 and surfaced live in your dashboard.
The only margin on top is a 5% platform fee, applied at credit top-up — not per-call. A $100 top-up funds $95 of provider calls. Cached requests (when you use prompt caching or semantic cache) get a 50% discount on the uncached cost, so long-context agent workloads often run net cheaper than calling ByteDance directly.
No subscription and no monthly minimum. Every new account gets $5 in signup credit (spendable on a curated edge-tier shortlist including Kimi K2.6, expires 7 days after signup). Top up from $5 with no auto-renew to unlock the full catalog — topups never expire. BYOK (bring your own ByteDance key) is supported on Enterprise if you already have a direct contract you want to preserve.
# pip install aigateway-py openai
# aigateway-py: sub-accounts, evals, replays, jobs, webhook verify.
# openai SDK: chat/embeddings/images/audio — drop-in compat per our SDK's own guidance.
from openai import OpenAI
client = OpenAI(
base_url="https://api.aigateway.sh/v1",
api_key="sk-aig-...",
)
r = client.chat.completions.create(
model="bytedance/seedance-2.0",
messages=[{"role": "user", "content": "Explain vector databases in two sentences."}],
)
print(r.choices[0].message.content)// npm i aigateway-js openai
// aigateway-js: sub-accounts, evals, replays, jobs, webhook verify.
// openai SDK: chat/embeddings/images/audio — drop-in compat.
import OpenAI from "openai";
const client = new OpenAI({
baseURL: "https://api.aigateway.sh/v1",
apiKey: process.env.AIGATEWAY_KEY,
});
const r = await client.chat.completions.create({
model: "bytedance/seedance-2.0",
messages: [{ role: "user", content: "Explain vector databases in two sentences." }],
});
console.log(r.choices[0].message.content);Bytedance Seedance 2.0 (Text To Video) is priced at $0.014 per output second. Full breakdown is on this page's how-it-works section.
Bytedance Seedance 2.0 (Text To Video) is not on the $5 signup-credit shortlist; that credit covers Kimi K2.6 and six other curated edge picks. Paid tier starts at a $5 top-up.
Not natively. AIgateway's semantic cache can still hit duplicate prompts and gives a 50% discount on cached requests.
Pass-through pricing means you automatically get whatever tier discount ByteDance publishes. AIgateway doesn't mark up; the 5% platform fee applies flat regardless of volume. Enterprise customers can negotiate committed-use discounts on top.
Every call returns usage.prompt_tokens and usage.completion_tokens in the response body, same as OpenAI. We also write the exact cost into x-aigateway-cost response header. Full audit log is in the dashboard.