πŸ‡ΊπŸ‡Έ 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

FieldValue
VendorGoogle 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 summaryFree 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 tierYes β€” generous; many models usable for free with rate limits
Paid tiersPay-per-token via Google Cloud billing (Vertex AI rates)
First released2023 (initially MakerSuite); rebranded Google AI Studio
Last reviewed2026-06-26
Official sitehttps://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

  1. Go to aistudio.google.com. Sign in with Google account.
  2. No payment required β€” free tier active immediately.
  3. 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
  4. Get an API key β€” click β€œGet API key” in the top bar
  5. 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"
    )
  6. 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
  • 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

CapabilityGoogle AI StudioOpenAI PlaygroundAnthropic Console
Free tierMost generousFree credit then paidFree credit then paid
Get API key easilyYes (one click)YesYes
Multimodal testingBest (image / video / audio / PDF)Image + audioImage + PDF
Long-context testing1M tokens256K1M (Sonnet)
Training on free inputsYes (catch!)NoNo
Best forTrying Gemini quicklyOpenAI experimentationClaude 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-southeast1 Sydney, australia-southeast2 Melbourne)
  • 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


Sources