Synthorai의 모든 Google 모델. 하나의 엔드포인트, 실시간 가격.
모델 13개 · chat / vision / code / tools · 입력 $0.1/M부터
Synthorai에서 Google 모델을 쓰는 이유
- 종량제, 구독 불필요. 키 하나로 모든 모델을 사용할 수 있습니다. 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 | — | — | — |
공급사 정가, 플랫폼 마진 없음. 가격은 각 모델 페이지에서 실시간으로 갱신됩니다. 아래는 공식 정가입니다. 로그인한 고객은 /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 키 하나만 만들면, 이 페이지의 모든 Google 모델을 OpenAI 호환 엔드포인트로 사용할 수 있습니다. 종량제, 구독 불필요(“초대제 베타”로 표시된 모델은 추가로 신청 승인이 필요합니다).
Google API 요금은 얼마인가요?
토큰 과금 모델은 입력 토큰 $0.1/M부터 시작하며, 각 모델의 실시간 단가는 위 표에 있습니다. 공급사 정가이며 플랫폼 마진이 없습니다.
제 Google 키(BYOK)를 사용할 수 있나요?
Gemini BYOK는 아직 제공되지 않습니다. 요청은 표시된 종량제 요금으로 Synthorai의 관리형 채널에서 실행됩니다.
API 이용 시 Google의 데이터 보존 정책은 어떻게 되나요?
게이트웨이는 기본적으로 프롬프트를 보존하지 않습니다. 업스트림에는 Google 자체 API 데이터 정책이 적용됩니다.