Synthorai 上のすべての Google モデル。1 つのエンドポイント、ライブ価格。
13 モデル · chat / vision / code / tools · 入力 $0.1/M から
Synthorai 経由で Google を使う理由
- 従量課金、サブスクリプション不要。 キー 1 本で全モデル。Google アカウントは不要です。
- プロンプトのゼロ保持。 ゲートウェイではデフォルトでプロンプトをゼロ保持します。アップストリームには Google 自身の API データポリシーが適用されます。 詳細 →
- プロンプトキャッシュ。 現行の Gemini モデルでは暗黙的キャッシュがデフォルトでオンになっており(キャッシュヒット時に自動で割引)、確実な節約のためのストレージベース課金の明示的な CachedContent API も提供されます。 キャッシュ読み取りは $0.01/M から。
Google のモデルと料金
| モデル | 入力 /M | 出力 /M | キャッシュ読み取り /M | コンテキスト |
|---|---|---|---|---|
| Gemini 3 Pro Image (Preview) | $2 | $120 | — | — |
| Gemini 3.1 Pro | $2 | $12 | $0.2 | 1M |
| Gemini 3.5 Flash | $1.5 | $9 | $0.15 | 1M |
| Gemini 2.5 Pro | $1.25 | $10 | $0.125 | 1M |
| Gemini 3 Flash | $0.5 | $3 | $0.05 | 1M |
| gemini-3.1-flash-image-preview | $0.5 | $60 | — | — |
| Gemini 2.5 Flash | $0.3 | $2.5 | $0.03 | 1M |
| gemini-2.5-flash-image | $0.3 | $30 | — | — |
| gemini-3.1-flash-lite-image | $0.25 | $30 | — | — |
| Gemini 3.1 Flash-Lite | $0.25 | $1.5 | — | 1M |
| Gemini 2.5 Flash-Lite | $0.1 | $0.4 | $0.01 | 1M |
| Chirp 2 | $0.016/min | — | — | — |
| Chirp 3 | $0.016/min | — | — | — |
ベンダー定価。プラットフォーム手数料なし。価格は各モデルページでライブ更新されます。 これらは公式 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.1/M からです。各モデルのライブ単価は上の表のとおりです。ベンダー定価のままで、プラットフォーム手数料はありません。
自分の Google キー(BYOK)を使えますか?
Gemini の BYOK はまだ利用できません。リクエストは掲載された従量課金料率で Synthorai の managed channel 上で実行されます。
API 経由での Google のデータ保持ポリシーは?
ゲートウェイではデフォルトでプロンプトをゼロ保持します。アップストリームには Google 自身の API データポリシーが適用されます。