Gemini 3.5 Thinking API
面向代码和 Agent 的 Google 深度推理模型,官方价 6 折。
通过 OpenAI 兼容接口调用 gemini-3.5-thinking。Coding Plan 价格为每百万 token 输入 $0.90 / 输出 $5.40,比 Google 官方价低 40%,一个 Hypereal API Key 即可使用。
Gemini 3.5 Thinking pricing
Coding Plan price vs Google official token pricing
几分钟即可集成
标准 REST API,支持任何编程语言。一个 API 密钥即可访问所有模型。
- 所有模型统一端点
- Bearer token 身份验证
- JSON 请求与响应
- 异步任务 Webhook 回调
- 提供 Python 和 Node.js SDK
from openai import OpenAI
client = OpenAI(
api_key="hyp-...",
base_url="https://api.hypereal.cloud/v1",
)
resp = client.chat.completions.create(
model="gemini-3.5-thinking",
messages=[{"role": "user", "content": "Review this diff and find the highest-risk bug."}],
)
print(resp.choices[0].message.content)为什么选择 Gemini 3.5 Thinking
Coding Plan eligible
Spend Coding Plan credits on Gemini 3.5 Thinking alongside Claude Opus, Sonnet, and GPT-5.5 — one prepaid pool, one API key.
40% off official pricing
$0.90 input / $5.40 output per million tokens vs Google official $1.50 / $9.00. A flat 40% off, no tiers.
OpenAI-compatible
Use the same SDK shape as /v1/chat/completions; just set model to gemini-3.5-thinking.
消耗的是哪种点数?
一个 API 密钥两种点数都能用。路由由你调用的模型决定,而非密钥。
Claude Opus 4.7、Sonnet 4.6、GPT-5.5、Gemini 3.5 Thinking、Gemini 3.5 Fast 优先消耗 Coding Credits(按先到期先扣),余额不足时再回落到 General Credits。
图像、视频、音频、3D 以及其他所有 LLM 仅消耗 General Credits。Coding Credits 会保留给代码开发工作负载。
常见问题
Is Gemini 3.5 Thinking included in the Coding Plan?
Yes. It is eligible for Coding Plan credits, so prepaid coding credits spend on it just like Claude Opus, Sonnet, and GPT-5.5.
What is the model ID?
Use gemini-3.5-thinking in chat, /v1/chat/completions, and any OpenAI-compatible SDK call.
How do I try it for free?
Every new account gets a free signup credit scoped to coding models — enough to make your first Gemini 3.5 Thinking call from Claude Code or Codex without paying.
用 Coding Credits 调用 Gemini 3.5 Thinking。
创建 API Key,把 base_url 指向 Hypereal,即可在任意 OpenAI 兼容 SDK 中调用 gemini-3.5-thinking。

