OpenAI
Synthorai 上のすべての OpenAI モデル。1 つのエンドポイント、ライブ価格。
28 モデル · chat / code / tools / reasoning · 入力 $0.2/M から
Synthorai 経由で OpenAI を使う理由
- BYOK(自前キーの持ち込み)。 自前の OpenAI キーを持ち込めます。上乗せゼロ、無料です。
- プロンプトのゼロ保持。 ゲートウェイではデフォルトでプロンプトをゼロ保持します。アップストリームには OpenAI 自身の API データポリシーが適用されます。 詳細 →
- プロンプトキャッシュ。 プロンプトが最小長を超えると自動プレフィックスキャッシュが働き、コード変更は不要です。キャッシュ読み取りは割引され(現行モデルで最大 90%)、書き込み手数料はありません。 キャッシュ読み取りは $0.06/M から。
OpenAI の位置 · 60 のチャットモデルの入力料金
- Alibaba $0.05 - $2.5
- ByteDance $0.1 - $0.5
- Google $0.1 - $2
- DeepSeek $0.138 - $1.32
- Tencent $0.14
- OpenAI $0.2 - $30
- MiniMax $0.22 - $0.3
- Moonshot $0.574 - $3
- Anthropic $1 - $10
- Z.ai $1 - $1.4
各バーはそのベンダーの最も安いチャットモデルから最も高いモデルまでを表し、このベンダーがカタログ全体の中でどこに位置するかがわかります。
OpenAI のモデルと料金
チャット 12 モデル
| モデル | 入力 /M | 出力 /M | キャッシュ読み取り /M | コンテキスト |
|---|---|---|---|---|
| GPT-5.2 | $1.75 | $14 | $0.875 | 400K |
| GPT-5.3 Codex | $1.75 | $14 | $0.875 | 400K |
| GPT-5.4 | $2.5 | $15 | $1.25 | 922K |
| GPT-5.4 Mini | $0.75 | $4.5 | $0.375 | 400K |
| GPT-5.4 Nano | $0.2 | $1.25 | $0.1 | 400K |
| GPT-5.4 Pro | $30 | $180 | $15 | 922K |
| GPT-5.5 | $5 | $30 | $0.5 | 1.1M |
| GPT-5.5 Pro | $30 | $180 | - | 1.1M |
| GPT-5.6 | $5 | $30 | $0.5 | 1.1M |
| GPT-5.6 Luna | $1 | $6 | $0.1 | 1.1M |
| GPT-5.6 Sol | $5 | $30 | $0.5 | 1.1M |
| GPT-5.6 Terra | $2.5 | $15 | $0.25 | 1.1M |
画像 4 モデル
| モデル | 1 枚あたり |
|---|---|
| GPT Image 1 | $5 |
| GPT Image 1 Mini | $2 |
| GPT Image 2 | $5 |
| gpt-image-1.5 | $5 |
音声 4 モデル
| モデル | 料金 |
|---|---|
| GPT-4o Mini Transcribe | $1.25/100万トークン |
| GPT-4o Transcribe | $2.5/100万トークン |
| GPT-4o Transcribe Diarize | $2.5/100万トークン |
| Whisper v1 | $0.006/min |
リアルタイム 2 モデル
| モデル | 入力 /M | 出力 /M | キャッシュ読み取り /M |
|---|---|---|---|
| GPT Realtime 2.1招待制ベータ | $4 | $24 | $0.4 |
| GPT Realtime 2.1 Mini招待制ベータ | $0.6 | $2.4 | $0.06 |
置き換えられたモデル(4)
チャット1 モデル
| モデル | 入力 /M | 出力 /M | キャッシュ読み取り /M | コンテキスト |
|---|---|---|---|---|
| GPT-5.2 Codex | $1.75 | $14 | $0.875 | 400K |
動画2 モデル
| モデル | 1 秒あたり |
|---|---|
| Sora 2 | $0.1/s |
| Sora 2 Pro | $0.3-$0.5/s |
リアルタイム1 モデル
| モデル | 入力 /M | 出力 /M | キャッシュ読み取り /M |
|---|---|---|---|
| GPT Realtime招待制ベータ | $4 | $16 | $0.4 |
ベンダーが公表した非推奨日を持つか、このカタログ内の新しいモデルが前世代として挙げているものです。公表価格のままルーティング可能なので、固定したモデル ID はそのまま動きます。
ベンダー定価。プラットフォーム手数料なし。価格は各モデルページでライブ更新されます。 これらは公式 list 価格です。ログイン中のお客様は /console/pricing でワークスペース割引を含む実効価格を確認できます。
30 秒で OpenAI モデルを使う
from openai import OpenAI
client = OpenAI(
base_url="https://synthorai.io/v1",
api_key="sk-syn-...",
)
resp = client.chat.completions.create(
model="gpt-5.4-pro",
messages=[{"role": "user", "content": "Summarize this diff"}],
reasoning_effort="medium",
)
print(resp.choices[0].message.content)import OpenAI from "openai";
const client = new OpenAI({
baseURL: "https://synthorai.io/v1",
apiKey: "sk-syn-...",
});
const resp = await client.chat.completions.create({
model: "gpt-5.4-pro",
messages: [{ role: "user", content: "Summarize this diff" }],
reasoning_effort: "medium",
});
console.log(resp.choices[0].message.content);curl https://synthorai.io/v1/chat/completions \
-H "Authorization: Bearer sk-syn-..." \
-H "Content-Type: application/json" \
-d '{
"model": "gpt-5.4-pro",
"messages": [{"role": "user", "content": "Hello"}],
"reasoning_effort": "medium"
}'package main
import (
"context"
"fmt"
"github.com/openai/openai-go/v3"
"github.com/openai/openai-go/v3/option"
)
func main() {
client := openai.NewClient(
option.WithBaseURL("https://synthorai.io/v1"),
option.WithAPIKey("sk-syn-..."),
)
resp, _ := client.Chat.Completions.New(context.TODO(), openai.ChatCompletionNewParams{
Model: "gpt-5.4-pro",
Messages: []openai.ChatCompletionMessageParamUnion{
openai.UserMessage("Summarize this diff"),
},
ReasoningEffort: openai.ReasoningEffortMedium,
})
fmt.Println(resp.Choices[0].Message.Content)
}import com.openai.client.OpenAIClient;
import com.openai.client.okhttp.OpenAIOkHttpClient;
import com.openai.models.chat.completions.*;
import com.openai.models.ReasoningEffort;
OpenAIClient client = OpenAIOkHttpClient.builder()
.baseUrl("https://synthorai.io/v1")
.apiKey("sk-syn-...")
.build();
ChatCompletion resp = client.chat().completions().create(
ChatCompletionCreateParams.builder()
.model("gpt-5.4-pro")
.addUserMessage("Summarize this diff")
.reasoningEffort(ReasoningEffort.MEDIUM)
.build());
System.out.println(resp.choices().get(0).message().content().orElse(""));OpenAI について
OpenAI の API は GPT チャットファミリー、o シリーズの推論モデル、画像生成、音声認識(STT)にわたります。Synthorai ではすべての OpenAI モデルが、あなたが既に使っているのと同じエンドポイントと SDK の背後にあり、base_url を差し替えるだけでコードはそのまま使えます。リアルタイムの従量課金価格と、プロバイダー料率で課金されるプロンプトキャッシュ読み取りを提供します。
よくある質問
サブスクリプションなしで OpenAI API キーを入手するには?
OpenAI アカウントは不要です。Synthorai に登録して API キーを 1 本作成すれば、このページのすべての OpenAI モデルを OpenAI 互換エンドポイントから利用できます。従量課金でサブスクリプションは不要です(「招待制ベータ」と表示のあるモデルは、別途申請の承認が必要です)。
OpenAI API の料金は?
トークン課金のモデルは入力 $0.2/M からです。各モデルのライブ単価は上の表のとおりです。ベンダー定価のままで、プラットフォーム手数料はありません。
自分の OpenAI キー(BYOK)を使えますか?
はい。自前の OpenAI キーを持ち込めます。上乗せゼロ、無料です。お客様のキーは暗号化されたボールトに保管され、そのキーを使うリクエストはベンダー定価で課金されます。
API 経由での OpenAI のデータ保持ポリシーは?
ゲートウェイではデフォルトでプロンプトをゼロ保持します。アップストリームには OpenAI 自身の API データポリシーが適用されます。
その他のプロバイダー