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 数据政策。