Gemini 3 Flash
ベンダー定価。プラットフォーム手数料なし、従量課金。 これらは公式 list 価格です。ログイン中のお客様は /console/pricing でワークスペース割引を含む実効価格を確認できます。 キャッシュヒット率 70% 時の実効入力単価:$0.185/M. 現行の Gemini モデルでは暗黙的キャッシュがデフォルトでオンになっており(キャッシュヒット時に自動で割引)、確実な節約のためのストレージベース課金の明示的な CachedContent API も提供されます。
30 秒で Gemini 3 Flash を使う
OpenAI 互換。base_url を差し替えるだけで、SDK はそのまま。POST /v1/chat/completions
from openai import OpenAI
client = OpenAI(
base_url="https://synthorai.io/v1",
api_key="sk-syn-...",
)
resp = client.chat.completions.create(
model="gemini-3-flash-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-flash-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-flash-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-flash-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-flash-preview")
.addUserMessage("Summarize this diff")
.reasoningEffort(ReasoningEffort.MEDIUM)
.build());
System.out.println(resp.choices().get(0).message().content().orElse(""));Gemini 3 Flash について
Gemini 3 Flash(プレビュー)は、Google のドキュメントがマルチモーダル理解において世界最高と説明するモデルで、最先端の推論と、強力なエージェント性能およびクリエイティブコーディング性能を兼ね備えます。
- テキスト・画像・動画・音声・PDF を 1,048,576 トークンのコンテキストウィンドウ内で受け付け、最大 65,536 出力トークンを生成し、全体を通じて思考に対応します。
- 機能には関数呼び出し、コード実行、コンピュータ使用、検索および Maps グラウンディング、構造化出力、コンテキストキャッシュが含まれます。
- Synthorai は統一された OpenAI 互換 chat completions インターフェース経由で提供します。
スペックと制限
| 最大出力(ベンダー仕様) | 65,536 |
| モダリティ | text + image + video + audio → text |
| 機能 | tools · structured_output · streaming · vision · batch · caching · reasoning · computer_use |
| 特記事項 | Preview model; 1,048,576-token input; computer use supported; image generation NOT supported despite gateway capability tag. |
| プロンプトキャッシュ | 自動 + 明示 · 最小プレフィックス 1,024 トークン |
よくある質問
Gemini 3 Flash API は無料で試せますか?
はい。新規アカウントには 10 回のトライアル呼び出しと最大 $1 の無料クレジットが付与され、カード登録は不要です。入力 $0.5/M で計算すると、このクレジットだけで Gemini 3 Flash に対して約 250 回の ~8K トークンのリクエストを送れます。
Gemini 3 Flash は何が得意ですか?
マルチモーダル理解に最良と説明、さらにクリエイティブコーディングの強さを伴う最先端の推論とコンピュータ使用と Maps グラウンディングに対応。全体像はベンダー公式のリリースノートに基づく About セクションをご覧ください。
Gemini 3 Flash の料金はいくらですか?
Synthorai 上の Gemini 3 Flash は入力 100 万トークンあたり $0.5、出力 100 万トークンあたり $3 です。ベンダー定価のままで、プラットフォーム手数料はありません。キャッシュ済み入力トークンは $0.05/M で課金されます。
Gemini 3 Flash はプロンプトキャッシュに対応していますか?
はい。自動キャッシュがデフォルトで有効なうえ、確実な割引を得られる明示モードもあります。キャッシュ済み入力トークンは $0.05/M(未キャッシュは $0.5/M)で課金されます。なお、キャッシュには 1,024 トークン以上の安定したプレフィックスが必要です。 プロンプトキャッシュガイド →
Gemini 3 Flash を利用するには?
お使いの OpenAI SDK の base_url を "https://synthorai.io/v1" に向け、model="gemini-3-flash-preview" を設定すれば完了です。API キー 1 本でゲートウェイ上のすべてのモデルを利用できます。
Gemini 3 Flash の知識カットオフはいつですか?
ベンダー公式ドキュメントによると、Gemini 3 Flash の知識カットオフは 2025-01 です(2026-07-09 時点)。