Synthorai 上的所有 Google 模型:一個端點,即時價格。
13 個模型 · chat / vision / code / tools · 輸入價低至 $0.1/M
為什麼透過 Synthorai 使用 Google
- 按用量計費,無需訂閱。 一組 key 用遍所有模型,無需 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 級推理,具備百萬 token 上下文視窗、原生多模態和影像生成。Synthorai 透過你已在使用的 OpenAI 相容 API 開放 Gemini,無需 Google Cloud 專案或 SDK 配置,各模型即時價格見下方。
常見問題
不用訂閱要怎麼取得 Google API key?
不需要 Google 帳號:註冊 Synthorai,建立一組 API key,本頁所有 Google 模型都能透過 OpenAI 相容端點呼叫,按用量計費,無需訂閱(標示「邀請制測試」的模型另需申請通過)。
Google API 的價格是多少?
按 token 計費的模型輸入價低至 $0.1/M;每個模型的即時單價見上表,皆為廠商牌價,無平台加價。
可以使用自己的 Google 金鑰(BYOK)嗎?
Gemini BYOK 暫未開放,請求經 Synthorai 的託管通道按所列按量付費費率執行。
Google 的 API 資料留存政策是什麼?
閘道器預設零提示詞留存;上游適用 Google 自身的 API 資料政策。