Synthorai 上のすべての Google モデル。1 つのエンドポイント、ライブ価格。
29 モデル · chat / vision / code / tools · 入力 $0.025/M から
Synthorai 経由で Google を使う理由
- 従量課金、サブスクリプション不要。 キー 1 本で全モデル。Google アカウントは不要です。
- プロンプトのゼロ保持。 ゲートウェイではデフォルトでプロンプトをゼロ保持します。アップストリームには Google 自身の API データポリシーが適用されます。 詳細 →
- プロンプトキャッシュ。 現行の Gemini モデルでは暗黙的キャッシュがデフォルトでオンになっており(キャッシュヒット時に自動で割引)、確実な節約のためのストレージベース課金の明示的な CachedContent API も提供されます。 キャッシュ読み取りは $0.01/M から。
Google の位置 · 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
各バーはそのベンダーの最も安いチャットモデルから最も高いモデルまでを表し、このベンダーがカタログ全体の中でどこに位置するかがわかります。
Google のモデルと料金
チャット 9 モデル
| モデル | 入力 /M | 出力 /M | キャッシュ読み取り /M | コンテキスト |
|---|---|---|---|---|
| Gemini 2.5 Flash | $0.3 | $2.5 | $0.03 | 1M |
| Gemini 2.5 Flash-Lite | $0.1 | $0.4 | $0.01 | 1M |
| Gemini 2.5 Pro | $1.25 | $10 | $0.125 | 1M |
| Gemini 3 Flash | $0.5 | $3 | $0.05 | 1M |
| Gemini 3.1 Pro | $2 | $12 | $0.2 | 1M |
| Gemini 3.5 Flash | $1.5 | $9 | $0.15 | 1M |
| Gemini 3.5 Flash-Lite | $0.3 | $2.5 | $0.03 | 1M |
| Gemini 3.6 Flash | $1.5 | $7.5 | $0.15 | 1M |
| Gemini 3.7 Flash | $0.75 | $3.75 | $0.075 | 1M |
画像 5 モデル
| モデル | 1 枚あたり |
|---|---|
| Gemini 3 Pro Image (Preview) | $2 |
| Gemini 3.1 Flash Image | $0.5 |
| gemini-2.5-flash-image | $0.3 |
| gemini-3.1-flash-image | $0.5 |
| gemini-3.1-flash-lite-image | $0.25 |
動画 5 モデル
| モデル | 1 秒あたり |
|---|---|
| Veo 2 | $0.5/s |
| Veo 3 | $0.75/s |
| Veo 3 Fast | $0.15/s |
| Veo 3.1 | $0.4/s |
| Veo 3.1 Fast | $0.15/s |
音声合成 3 モデル
| モデル | 100 万文字あたり |
|---|---|
| Google TTS Chirp 3 HD | $30 |
| Google TTS Neural2 | $16 |
| Google TTS Standard | $4 |
リアルタイム 2 モデル
| モデル | 入力 /M | 出力 /M |
|---|---|---|
| gemini-2.5-flash-native-audio招待制ベータ | $0.5 | $2 |
| gemini-3.1-flash-live招待制ベータ | $0.75 | $4.5 |
置き換えられたモデル(3)
チャット1 モデル
| モデル | 入力 /M | 出力 /M | コンテキスト |
|---|---|---|---|
| Gemini 3.1 Flash-Lite | $0.25 | $1.5 | 1M |
ベクトル埋め込み2 モデル
| モデル | 入力 /M |
|---|---|
| Gemini Embedding 001 | $0.15 |
| Text Embedding 004 | $0.025 |
ベンダーが公表した非推奨日を持つか、このカタログ内の新しいモデルが前世代として挙げているものです。公表価格のままルーティング可能なので、固定したモデル ID はそのまま動きます。
ベンダー定価。プラットフォーム手数料なし。価格は各モデルページでライブ更新されます。 これらは公式 list 価格です。ログイン中のお客様は /console/pricing でワークスペース割引を含む実効価格を確認できます。
30 秒で Google モデルを使う
from openai import OpenAI
client = OpenAI(
base_url="https://synthorai.io/v1",
api_key="sk-syn-...",
)
resp = client.chat.completions.create(
model="gemini-3.1-pro-preview",
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: "gemini-3.1-pro-preview",
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": "gemini-3.1-pro-preview",
"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: "gemini-3.1-pro-preview",
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("gemini-3.1-pro-preview")
.addUserMessage("Summarize this diff")
.reasoningEffort(ReasoningEffort.MEDIUM)
.build());
System.out.println(resp.choices().get(0).message().content().orElse(""));Google について
Google の Gemini ファミリーは、高速で安価な Flash・Flash-Lite ティアから Pro 級の推論までをカバーし、100 万トークンのコンテキストウィンドウ、ネイティブなマルチモーダリティ、画像生成を備えます。Synthorai は、あなたが既に使っている OpenAI 互換 API 経由で Gemini を公開するため、Google Cloud プロジェクトや SDK のセットアップは不要です。モデルごとのリアルタイム価格は下記のとおりです。
よくある質問
サブスクリプションなしで Google API キーを入手するには?
Google アカウントは不要です。Synthorai に登録して API キーを 1 本作成すれば、このページのすべての Google モデルを OpenAI 互換エンドポイントから利用できます。従量課金でサブスクリプションは不要です(「招待制ベータ」と表示のあるモデルは、別途申請の承認が必要です)。
Google API の料金は?
トークン課金のモデルは入力 $0.025/M からです。各モデルのライブ単価は上の表のとおりです。ベンダー定価のままで、プラットフォーム手数料はありません。
自分の Google キー(BYOK)を使えますか?
Gemini の BYOK はまだ利用できません。リクエストは掲載された従量課金料率で Synthorai の managed channel 上で実行されます。
API 経由での Google のデータ保持ポリシーは?
ゲートウェイではデフォルトでプロンプトをゼロ保持します。アップストリームには Google 自身の API データポリシーが適用されます。
その他のプロバイダー