Every Google model on Synthorai: one endpoint, live prices.
13 models · chat / vision / code / tools · from $0.1/M input
Why Google via Synthorai
- Pay-as-you-go, no subscription. One key, every model; no Google account required.
- Zero prompt retention. Zero prompt retention at the gateway by default; Google's own API data policies apply upstream. Details →
- Prompt caching. Implicit caching is on by default for current Gemini models (discounted automatically on cache hits), plus an explicit CachedContent API with storage-based billing for guaranteed savings. Cache reads from $0.01/M.
Google models & pricing
| Model | Input /M | Output /M | Cache read /M | Context |
|---|---|---|---|---|
| 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 | — | — | — |
Provider list prices: no platform markup. Prices refresh live on each model's page. These are official list prices. Logged-in customers may see effective prices including workspace discounts on /console/pricing.
Use Google models in 30 seconds
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(""));About Google
Google's Gemini family covers fast, inexpensive Flash and Flash-Lite tiers up to Pro-grade reasoning, with million-token context windows, native multimodality and image generation. Synthorai exposes Gemini through the OpenAI-compatible API you already use (no Google Cloud project or SDK setup required) with per-model live pricing below.
FAQ
How do I get a Google API key without a subscription?
You don't need a Google account: sign up on Synthorai, create one API key, and every Google model on this page works through the OpenAI-compatible endpoint: pay-as-you-go, no subscription (models marked "invited beta" additionally need an approved application).
What does the Google API cost?
Token-billed models start at $0.1/M input tokens; every model's live per-unit price is in the table above. These are provider list prices with no platform markup.
Can I use my own Google key (BYOK)?
Gemini BYOK isn't available yet; requests run on Synthorai's managed channels at the listed pay-as-you-go rates.
What is Google's data-retention policy via API?
Zero prompt retention at the gateway by default; Google's own API data policies apply upstream.