doubao-seedance-2-5
ByteDance · 動画
doubao-seedance-2-5はGetModelでOpenAI互換APIを通じて利用でき、従量課金です。キーを1つ取得すれば、任意のOpenAI SDKから呼び出せます。
料金
| 項目 | 価格 |
|---|---|
| 入力 | $10.5 / 100万トークン |
| 出力 | $10.5 / 100万トークン |
呼び出し方法
curl https://getmodel.ai/v1/chat/completions \
-H "Authorization: Bearer $GETMODEL_API_KEY" \
-H "Content-Type: application/json" \
-d '{"model":"doubao-seedance-2-5","messages":[{"role":"user","content":"Hello"}]}' from openai import OpenAI
client = OpenAI(base_url="https://getmodel.ai/v1", api_key="$GETMODEL_API_KEY")
resp = client.chat.completions.create(
model="doubao-seedance-2-5",
messages=[{"role": "user", "content": "Hello"}],
)
print(resp.choices[0].message.content) 詳細
よくある質問
doubao-seedance-2-5 API の料金は?
GetModel での doubao-seedance-2-5 は $10.5 / 100万トークン (入力), $10.5 (出力)、従量課金・サブスク不要です。
doubao-seedance-2-5 を API で呼び出すには?
OpenAI 互換クライアントを https://getmodel.ai/v1 に向け、GetModel の API キーを設定し、model を「doubao-seedance-2-5」にします。
doubao-seedance-2-5 を他のモデルと一緒に使えますか?
はい — GetModel の API キー1つで doubao-seedance-2-5 と 30+ の他モデルを利用できます。model フィールドを変えるだけです。