Is Google Gemini free? Yes, with limits worth knowing
Updated 2026-07-15
Yes, Google Gemini is free to use, both in the Gemini app and through the API free tier, and neither asks for a credit card. The catch is limits: the free app rations the strongest models, and the free API caps you at a handful of requests per minute.
Quick answer: free, but "Gemini" is five products wearing one name
The short answer is yes. You can use Google Gemini today without paying anything and without entering a card number. The longer answer is that Google ships several different things under the Gemini brand, and only two of them are free. The Gemini app, the chatbot you use in a browser or on your phone, has a free tier that most casual users never need to escape. The Gemini API, the thing developers integrate into code, has a separate free tier with no billing account required. Everything else costs money: Google AI Pro (the subscription that absorbed what was marketed as Gemini Advanced) runs about $20 per month, Google AI Ultra runs about $250 per month, and paid API usage bills per million tokens with no monthly fee at all. Here is the map. The rest of this page walks through what each free tier actually restricts and what to do when a limit starts hurting.
| Product | Free? | What you pay | Who it fits |
|---|---|---|---|
| Gemini app, free tier | Yes | $0 | Everyday chat, homework, light research |
| Google AI Pro (includes Gemini Advanced) | No | About $20/month | Daily heavy app use, bigger limits |
| Google AI Ultra | No | About $250/month | Maximum caps, video generation, early features |
| Gemini API, free tier | Yes | $0 | Prototypes, evals, personal scripts |
| Gemini API, paid | No | Per million tokens | Production apps and real traffic |
The consumer app and the API are two unrelated free tiers
The most common confusion behind this question is assuming the app and the API share one quota. They do not. Paying for Google AI Pro does not raise your API limits by a single request, and linking a billing account to your API project unlocks nothing in the consumer app. Treat them as separate products that happen to run the same models. The free app is metered in feature allowances. You get effectively unlimited chat with the fast default model, a daily ration of prompts to the strongest Pro-class model, limited image generation, and small caps on things like file uploads and Deep Research runs. Google does not publish most of these numbers and changes them without notice, so any specific figure you read is a snapshot. The free API is metered in requests and tokens. You create a key in Google AI Studio in about a minute, no card required, and the platform enforces hard ceilings per minute and per day. Those numbers are published, and they are the difference between a free tier you can prototype on and one you can ship on. One more split that matters: data handling. In the consumer app, whether your conversations are used to improve Google's products depends on your activity settings. On the free API tier, Google's terms state that prompts and responses may be used for product improvement, which can include human review. Paid API traffic is excluded. If your prompts contain anything sensitive, that line is more important than any rate limit.
What Gemini Advanced costs now: Google AI Pro and Ultra
Gemini Advanced no longer exists as a standalone product name on the price list. Access to the top consumer models now comes through Google AI Pro, at about $20 per month, with Google AI Ultra above it at about $250 per month. If you see "Gemini Advanced" referenced anywhere, it means the model access bundled into these plans. As of mid-2026, Google AI Pro typically includes the items below. The exact bundle shifts every few months, so verify against Google's current plan page before subscribing.
- Much higher daily caps on Pro-class models than the free app, plus a longer context window for big documents.
- Higher limits on Deep Research, image generation, and file analysis.
- A monthly ration of video generation credits.
- Around 2 TB of Google One storage plus higher limits in NotebookLM; Ultra pushes storage to roughly 30 TB and raises every cap further.
- Periodic promotions: Google has repeatedly offered AI Pro free for a year to eligible university students. Check current eligibility before paying.
The free Gemini API tier: the actual numbers
For developers, the free tier is real and useful. You get a key from Google AI Studio without a billing account, and every call costs $0 until you hit a ceiling. The API meters three things at once, and whichever cap you hit first turns every response into HTTP 429 until the window resets. The figures below are approximate Flash-class limits as of mid-2026. Pro-class models get materially lower caps on every meter. Limits attach to the Google Cloud project, not the key, so minting extra keys in one project changes nothing.
| Meter | Approx. free-tier limit (Flash-class) | What hitting it feels like |
|---|---|---|
| Requests per minute (RPM) | ~10 | 429 errors until the minute window rolls over |
| Tokens per minute (TPM) | ~250K | 429 on long prompts even at a low request rate |
| Requests per day (RPD) | ~250 | Hard stop until midnight Pacific, no retry helps |
| Pro-class models | Far lower on all three meters | Same 429, reached much sooner |
curl "https://generativelanguage.googleapis.com/v1beta/models/gemini-3.5-flash:generateContent" \
-H "x-goog-api-key: $GEMINI_API_KEY" \
-H "Content-Type: application/json" \
-d '{"contents":[{"parts":[{"text":"Is this API call free? Answer in one sentence."}]}]}'
# HTTP 200: you are inside free-tier limits.
# HTTP 429 RESOURCE_EXHAUSTED: a per-minute or per-day cap tripped.When free runs out: pay per token instead of subscribing
Once you outgrow the free tiers, you have two escape routes, and neither has to be a $20 subscription. The first is Google's own paid API: link a billing account and the caps jump by orders of magnitude while you pay per million tokens. Light personal use of a Flash-class model typically costs a few dollars per month, far less than a subscription. The friction is Google's tier ladder, where the highest rate limits unlock only after cumulative spend. The full breakdown lives in our Gemini API cost guide. The second is an AI gateway. apisrouter.com is an OpenAI-compatible option: no signup form, you pay at /topup and the API key arrives by email, the first top-up adds +100% balance, and global models are priced 20% below official list with Chinese models below official as well. Quota is just a balance you spend down, so there is no requests-per-day cliff and no tier ladder. Point any OpenAI-style client at https://api.apisrouter.com/v1 and the same key also covers Claude, GPT, and DeepSeek models, which makes it cheap to test whether Gemini is even the right model for your workload.
| Model ID | Input / 1M tokens | Output / 1M tokens |
|---|---|---|
| deepseek-v4-flash | $0.126 | $0.252 |
| deepseek-v4-pro | $0.3915 | $0.783 |
| glm-5 | $0.514 | $2.314 |
| gemini-3.5-flash | $1.20 | $7.20 |
| claude-sonnet-4-6 | $2.40 | $12.00 |
| gpt-5.5 | $4.00 | $24.00 |
from openai import OpenAI
client = OpenAI(
api_key="sk-APIsRouter-...", # arrives by email after /topup
base_url="https://api.apisrouter.com/v1",
)
for model in ("gemini-3.5-flash", "deepseek-v4-flash"):
resp = client.chat.completions.create(
model=model,
messages=[{"role": "user", "content": "Summarize this in one line: tokens are the unit of billing."}],
)
print(model, "->", resp.choices[0].message.content)How to decide in thirty seconds
The honest summary: Gemini's free tiers are among the most generous in the industry, and for most people reading this the answer really is "yes, free, use it." Paying only makes sense once a specific cap costs you time every day, and at that point per-token billing is usually cheaper than a subscription unless you are a very heavy app user.
- You chat a few times a day: stay on the free Gemini app. You will rarely notice the caps.
- You hit the free app's Pro-model ration daily: Google AI Pro at about $20 per month is the intended upgrade. Do the math against pay-per-token first if your use is bursty.
- You are prototyping code: the free API tier covers you until roughly a couple hundred requests per day.
- You are shipping to users or sending sensitive data: move to paid API traffic, either Google direct or a gateway, since free API prompts can be used for product improvement.
- You want several model families behind one key: a token-billed gateway beats stacking subscriptions.
FAQ
Is Google Gemini free to use without a subscription?
Yes. The Gemini app has a free tier with unlimited chat on the fast default model and daily rations of premium features, and the Gemini API has a free tier with no billing account required. Subscriptions only buy higher caps, stronger consumer-side model access, and extras like storage and video generation.
What is the difference between free Gemini and Gemini Advanced?
Gemini Advanced access now ships inside Google AI Pro at about $20 per month. Compared with the free app it raises daily caps on Pro-class models, extends the context window for large files, adds video generation credits, and bundles around 2 TB of storage. The free app runs the same fast model without those ceilings lifted.
Is the Gemini API free for developers?
Yes, within hard limits. A Google AI Studio key costs nothing and needs no credit card, but Flash-class models are capped at roughly 10 requests per minute and a few hundred per day, with Pro-class models capped lower. Google may also use free-tier prompts and responses to improve its products, so keep sensitive data on paid traffic.
How much does Google AI Ultra cost and who needs it?
About $250 per month. It exists for people who max out AI Pro: the highest consumer rate limits, the most video generation, early access to new features, and roughly 30 TB of storage. Developers hitting API limits should ignore it entirely, since it does nothing for API quotas; paid per-token API access is the right lever there.
Does the free version of Gemini use my data for training?
For the consumer app, it depends on your activity settings, and Google documents that human reviewers may see sampled conversations when activity is on. For the API, the free tier terms allow Google to use prompts and responses for product improvement, while paid API traffic is excluded. Read the current terms before sending anything private through a free key.
Is Gemini cheaper than paying for an API?
For casual chat, the free app beats everything at $0. For automation, per-token API billing is usually cheaper than a $20 subscription: light scripting on a Flash-class model often costs a few dollars per month, and budget models like deepseek-v4-flash cost a fraction of Gemini rates. Subscriptions win only for heavy daily in-app use.