How to use Gemini 3.6 Flash for free

Use Gemini 3.6 Flash for free two ways: the Gemini app and the free API tier in Google AI Studio. Real rate limits, the data-use catch, and when to pay.

Ashley Innocent

Ashley Innocent

22 July 2026

How to use Gemini 3.6 Flash for free

Apidog for Enterprise

On-Premises Deploy

SSO & RBAC

SOC 2 Compliant

Explore Apidog Enterprise

Short answer: yes, you can use Gemini 3.6 Flash for free, and there are two ways to do it. You can chat with it in the Gemini app, and you can call it through the free tier of the Gemini API in Google AI Studio. Both are real. Both come with real limits. Neither one is unlimited, and the free API tier carries a data-use caveat you should read before you paste anything private into it.

Gemini 3.6 Flash is Google’s refreshed workhorse model, announced on July 21, 2026. It’s cheaper and faster than the 3.5 Flash it replaces, which makes the free tier a good place to prototype before you spend a cent. Here’s how to get on it, what you actually get, and when it’s time to move up.

button

Can you use Gemini 3.6 Flash for free?

Yes, in two ways, aimed at two different people.

  1. The Gemini app, for chat. Sign in with a Google account and start typing. This is the consumer path. No code, no API key, no billing setup.
  2. The Gemini API free tier, for developers. You generate an API key in Google AI Studio and send requests to the model from your own code. The free tier is rate-limited, but you pay nothing to start.

One naming note so you don’t get lost. The refresh shipped with mixed version numbers. The workhorse model is Gemini 3.6 Flash. The cheapest tier alongside it is Gemini 3.5 Flash-Lite. Same launch, different numbers. If you want the full breakdown, see what is Gemini 3.6 Flash.

Using Gemini 3.6 Flash free in the Gemini app

This is the fastest way to try the model. Go to the Gemini app, sign in with a Google account, and ask it something. Gemini 3.6 Flash is the model behind the fast, everyday responses, so most of what you type runs through it or a sibling in the family.

The app is great for one-off questions, drafting, and quick reasoning checks. What it can’t do is fit into your product. There’s no request body, no way to set parameters like temperature, and no clean way to send the same call a thousand times. For that, you want the API.

Using the free API tier in Google AI Studio

Here’s the developer path, start to finish.

  1. Open Google AI Studio and sign in.
  2. Click Get API key and create a key. Copy it somewhere safe.
  3. Send your first request. The model ID is gemini-3.6-flash.

A minimal call looks like this:

curl "https://generativelanguage.googleapis.com/v1beta/models/gemini-3.6-flash:generateContent" \
  -H "x-goog-api-key: $GEMINI_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "contents": [
      { "parts": [ { "text": "Explain what a REST API is in two sentences." } ] }
    ]
  }'

That’s the same shape you’ll use everywhere else, so it’s worth getting it working once. Put your key in an environment variable instead of pasting it inline, and you’re ready to build. For the full walkthrough, including parameters and a testing loop, read how to use the Gemini 3.6 Flash API.

The free tier accepts the same inputs as the paid one: text, images, video, audio, and PDFs. Output is text. You get the model’s 1M-token context window too, so you can throw a long document at it and ask questions.

The honest limits of the free tier

Free does not mean unlimited. Two limits matter.

Rate and quota caps. The free tier caps how many requests you can send per minute and per day. Hit the ceiling and the API returns HTTP 429, “too many requests.” Google tunes these numbers over time, so instead of quoting a figure that goes stale, check the live Gemini API rate limits for the exact quota on your key. The practical takeaway: the free tier is sized for prototyping and light personal use, not for serving real traffic.

Data use. This is the one people miss. On the free tier, Google may use your prompts and the model’s responses to improve its products. That’s the trade for paying nothing. So don’t send customer data, secrets, proprietary code, or anything you’d regret sharing. Treat the free tier as a public sandbox: perfect for learning the API and building a proof of concept, wrong for production data. If your inputs are sensitive, that alone is a reason to move to the paid tier.

If you used the previous generation, the same rules applied there, and the pattern is documented in how to use Gemini 3.5 for free.

When you should move to the paid tier

You move up when any of these becomes true:

The good news is that Gemini 3.6 Flash is cheap to run. It costs $1.50 per million input tokens and $7.50 per million output tokens, and that output price is down from $9.00 on 3.5 Flash. The model also tends to use fewer output tokens for the same work, so your real bill often lands lower than the sticker rate suggests. We break down the full math in Gemini 3.6 Flash pricing.

Cheaper still: Gemini 3.5 Flash-Lite

If your problem is volume, not depth, there’s a cheaper option in the same family. Gemini 3.5 Flash-Lite runs at $0.30 per million input tokens and $2.50 per million output tokens, well under Flash, and it streams at roughly 350 output tokens per second. It also has its own free tier.

Flash-Lite is the right call for high-volume, latency-sensitive jobs: classification, tagging, short extractions, simple routing. Flash is the better pick when the task needs stronger reasoning or tool use. Reach for Flash-Lite when you’re doing a lot of small things and want the bill to stay flat. See what is Gemini 3.5 Flash-Lite for where it fits.

Test your free-tier calls in Apidog

The free tier is exactly where the API surprises you. Your key works, then a burst of calls trips a 429. A response comes back shaped a little differently than you expected. You want to see all of that before it reaches your app, and that’s the kind of work Apidog is built for.

Set it up once and it pays off across the whole cluster:

None of this makes Apidog the model. It’s the client and test bench around the model, so the calls you ship behave the way you think they do. Download Apidog and point it at your free key to try it.

FAQ

Is Gemini 3.6 Flash free unlimited? No. The free tier has per-minute and per-day rate caps, and it returns HTTP 429 when you exceed them. Check the Gemini API docs for the current quota on your key. It’s sized for prototyping, not production traffic.

Is my free-tier data private? No. On the free tier, Google may use your prompts and the model’s outputs to improve its products. Don’t send sensitive, proprietary, or customer data through it. Move to the paid tier when your inputs need to stay private.

Do I need to enter a credit card to use the free tier? No. You generate a key in Google AI Studio and start calling the API without billing set up. You add a payment method only when you move to the paid tier for higher limits.

Is the Gemini app the same as the API free tier? No. The app is consumer chat with no code. The API free tier gives you a key and programmatic access. Both let you use the model for free, but only the API fits inside your own software.

Which free model should I start with, Flash or Flash-Lite? Start with Gemini 3.6 Flash for general reasoning and tool-heavy tasks. Switch to Gemini 3.5 Flash-Lite when you’re running high-volume, simple calls and want the lowest cost per request.

Where to go from here

Start in the Gemini app if you just want to feel the model out. Move to the free API tier in Google AI Studio the moment you want to build with it, keeping real data off it until you upgrade. When your prototype earns real traffic, the paid tier is cheap and the switch is one billing change away. Wire the calls through Apidog from the first request, and the free tier’s 429s and quirks show up on your bench instead of in front of your users.

button

Explore more

Self-Hosting GLM-5.3: Get Ready for the Open-Weights Drop

Self-Hosting GLM-5.3: Get Ready for the Open-Weights Drop

GLM-5.3 open weights land around August 28. Prep guide: hardware sizing for the 744B MoE, vLLM and SGLang setup, and a hosted-vs-local regression baseline in Apidog.

16 August 2026

How to Use the GLM-5.3 API?

How to Use the GLM-5.3 API?

GLM-5.3 API quickstart: get a Z.ai or bigmodel.cn key, call the OpenAI-compatible endpoint in cURL, Python, and Node.js, stream tokens, and test in Apidog.

16 August 2026

Gemini 3.7 Flash Pricing Explained: Lock In Rates Before They Double

Gemini 3.7 Flash Pricing Explained: Lock In Rates Before They Double

Gemini 3.7 Flash pricing: $0.75/$3.75 per 1M tokens until Dec 31, 2026, then rates double. See worked cost examples and five ways to cut your token spend.

14 August 2026

Practice API Design-first in Apidog

Discover an easier way to build and use APIs

How to use Gemini 3.6 Flash for free