πΊπΈ USA Β· Google AI Studio
Status: π© COMPLETE π¦ LIVING Last updated: 2026-06-26 Plain-English tagline: Free developer playground for the Gemini API. Try models, build prototypes, get API keys β all in a browser. The fastest way to start building with Gemini.
Front-matter facts
| Field | Value |
|---|---|
| Vendor | Google LLC (Mountain View, USA) |
| Country / origin | πΊπΈ USA |
| Recommended for Australian users? | β Yes β fully accessible from AUS; AUD billing via Google Cloud for production use |
| Privacy summary | Free tier: DOES train on your inputs by default (unusual among Western providers β AI Studio is explicitly a βweβre learning what people wantβ playground). Paid tier and Vertex AI: never train. |
| Free tier | Yes β generous; many models usable for free with rate limits |
| Paid tiers | Pay-per-token via Google Cloud billing (Vertex AI rates) |
| First released | 2023 (initially MakerSuite); rebranded Google AI Studio |
| Last reviewed | 2026-06-26 |
| Official site | https://aistudio.google.com |
What it is
Google AI Studio is Googleβs free developer playground for the Gemini API. Itβs a browser-based interface where developers can:
- Try Gemini models (free, generous rate limits)
- Test prompts quickly without writing code
- Build prototypes with tunable parameters (temperature, max tokens, etc.)
- Get API keys for use in your own code
- Stream responses in real-time
- Test multimodal inputs β upload images, videos, audio, PDFs and have Gemini analyse them
- Try long-context with Geminiβs 1M-token context
- Test function calling / tool use
- Try Imagen / Veo / Lyria alongside Gemini
Itβs the easiest possible on-ramp to building with Gemini β far simpler than going through Google Cloud / Vertex AI directly.
Important: Google AI Studio is distinct from:
- Gemini consumer chat (gemini.google.com) β for end-users; chat product
- Vertex AI (cloud.google.com/vertex-ai) β for enterprise developers with full Google Cloud features (data residency, IAM, audit logs)
AI Studio is the middle ground: too simple for production, perfect for learning / prototyping / personal projects / low-stakes apps.
What youβd use it for
- Try Gemini before committing to building β see what the model can do
- Quick prototypes β chat with Gemini using your own data without setting up a full project
- Get an API key for use in your code (5 minutes setup)
- Multimodal testing β see how Gemini handles your specific image / video / PDF inputs
- Long-context experiments β upload a 500-page book and ask Gemini questions
- Vibe-check different Gemini variants β Pro vs Flash vs Deep Think
- Personal / hobby apps that need a Gemini backend
- Teaching / education β students can experiment without payment
- Function-calling experimentation β try tool use without infrastructure
When NOT to use AI Studio:
- Production apps β use Vertex AI instead (production SLAs, data residency, no-training, audit logs)
- Sensitive data β AI Studio free tier trains on inputs; not for confidential content
- Enterprise compliance β use Vertex AI for HIPAA / GDPR / SOC 2 needs
How to sign up + first 5 minutes from Australia
- Go to
aistudio.google.com. Sign in with Google account. - No payment required β free tier active immediately.
- Try it:
- Pick a model from the dropdown (e.g., Gemini 3 Pro)
- Type a prompt in the chat
- Upload an image / PDF / video β Gemini reads it
- Get an API key β click βGet API keyβ in the top bar
- Copy your key and use it in code:
from google import genai client = genai.Client(api_key="YOUR_KEY") response = client.models.generate_content( model="gemini-3-pro", contents="Hello, Gemini" ) - For production β graduate to Vertex AI by connecting a Google Cloud billing account
What it costs
Free tier
- Genuinely generous β Gemini 3 Flash and other Flash variants free with rate limits (~15 RPM, 1M tokens/day)
- Gemini 3 Pro available with lower rate limits free
- All multimodal capabilities free
- Imagen / Veo / Lyria experimental access often free
- Catch: trains on your inputs by default β important caveat
Paid tier (via Google Cloud billing)
- Same per-token pricing as Vertex AI
- Gemini 3 Pro: ~US$1.25 per million input tokens (varies; verify current pricing)
- Gemini 3 Flash: ~US$0.15 per million input tokens (much cheaper)
- No training on inputs
- Higher rate limits
Hidden costs to know about
- Free tier IS used for model improvement β donβt paste sensitive data
- Production-grade use requires graduating to Vertex AI for SLAs / no-training / data residency
- Some experimental models in AI Studio are research-only β may disappear without notice
How it compares to alternatives
| Capability | Google AI Studio | OpenAI Playground | Anthropic Console |
|---|---|---|---|
| Free tier | Most generous | Free credit then paid | Free credit then paid |
| Get API key easily | Yes (one click) | Yes | Yes |
| Multimodal testing | Best (image / video / audio / PDF) | Image + audio | Image + PDF |
| Long-context testing | 1M tokens | 256K | 1M (Sonnet) |
| Training on free inputs | Yes (catch!) | No | No |
| Best for | Trying Gemini quickly | OpenAI experimentation | Claude experimentation |
For trying Gemini specifically, AI Studio is the obvious starting point. For sensitive prototyping, use Vertex AI or Anthropic Console (which doesnβt train on inputs).
Privacy / data handling
The single most important thing about AI Studio: the free tier DOES train on your inputs by default. This is unusual among Western AI providers and explicitly disclosed by Google.
- For personal hobby projects, this is usually fine
- For anything youβd consider private, use Vertex AI instead (which doesnβt train)
- For enterprise / regulated work, AI Studio free tier is not appropriate
When you graduate to paid AI Studio (billing connected) or Vertex AI:
- No training on inputs
- AUS data residency available via Vertex AI (
australia-southeast1Sydney,australia-southeast2Melbourne) - Standard Google Cloud enterprise terms
Recent changes
- 2026: Gemini 3 Pro and 3 Flash made widely available in AI Studio; multimodal capabilities expanded
- 2025: Imagen / Veo / Lyria experimental access in AI Studio
- 2024: Rebranded from MakerSuite to Google AI Studio
- 2023: Initial MakerSuite launch
Gotchas
- Free tier trains on your inputs β say it again: donβt paste sensitive data into free AI Studio
- Rate limits are real β heavy use will hit them; verify current limits at ai.google.dev
- Some experimental models are research-only β may disappear without notice; not for production reliance
- API key shown once β save it carefully; you can rotate but itβs easier to save first
- Models change quickly β pin to specific versions in production (e.g.,
gemini-3-pro-experimental-2025-12-05) not generic aliases - AI Studio vs Vertex AI vs Gemini app confusion is common β clarify which you mean
- For production always graduate to Vertex AI β AI Studio is intentionally for experimentation
See also
- Gemini π© π¦ β the consumer chat product
- Gemini models lineup π₯
- Vertex AI π₯ β the enterprise alternative
- Imagen π© π¦
- Veo π₯
- Lyria π₯
- NotebookLM π© π¦
- Claude API overview π© π¦
- OpenAI API π₯
- How to access US AI from Australia π© π¦
- privacy-and-data-training.md π© π¦
- How-to: set-up-google-ai-studio π₯