Gemini 3.5 Thinking API
การให้เหตุผลของ Google สำหรับเอเจนต์เขียนโค้ด ถูกกว่าราคาทางการ 40%
รัน gemini-3.5-thinking ผ่าน endpoint ที่เข้ากันได้กับ OpenAI ราคา Coding Plan คือ $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 เดียวให้คุณเข้าถึงโมเดลทั้งหมดได้
- endpoint เดียวสำหรับทุกโมเดล
- การยืนยันตัวตนด้วย Bearer token
- คำขอและการตอบกลับแบบ JSON
- การเรียกกลับ Webhook สำหรับงานแบบอะซิงโครนัส
- มี SDK สำหรับ Python และ Node.js
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 ก่อน (แบบ FIFO) ถ้าหมดจะตกไปใช้ 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.
ใช้ Gemini 3.5 Thinking ด้วย Coding Credits
สร้าง API key ตั้งค่า base_url ไปที่ Hypereal แล้วเรียก gemini-3.5-thinking จาก SDK ใดก็ได้ที่เข้ากันได้กับ OpenAI

