Google DeepMind's balanced Gemini 3.5 model that pairs Pro-line reasoning quality with Flash-line latency and cost. Natively multimodal across text, image, audio, and video with a 1M-token context window, configurable thinking levels, and streaming function calling, tuned for high-throughput production workloads.
1.0M tokens
2
available
Cheapest
Google AI Studio
$0.00/1M tokens
Google AI Studio, Google Cloud Vertex AI
Sorted by total cost (input + output per 1M tokens). Click a row to view provider details.
| Provider | Pricing (per 1M) | Rate Limits | Regions | Health | Latency |
|---|---|---|---|---|---|
In: FreeOut: Free | 10 RPM / 250K TPM | global | Healthy | 0ms | |
In: $0.50Out: $3.00 | 1K RPM / 8.0M TPM | us-east-1eu-west-1global | Healthy | 0ms |
Use this model via Google AI Studio with an OpenAI-compatible SDK.
import OpenAI from "openai";
const client = new OpenAI({
baseURL: "https://api.google-ai-studio.com/v1",
apiKey: process.env.GOOGLE_AI_STUDIO_API_KEY,
});
const response = await client.chat.completions.create({
model: "gemini-3.5-flash",
messages: [
{ role: "user", content: "Hello!" }
],
});
console.log(response.choices[0].message.content);Using Google AI Studio API • OpenAI-compatible SDK