There is no student-only Gemini API key. Students who want Gemini API access use the same Google AI Studio path as everyone else, and the current student-facing Gemini offer is a different product surface. As of April 2, 2026, the current US Gemini for Students page says the previous student offer expired on March 11, 2026 and now points users to a 1 month Google AI Pro trial for the Gemini app, NotebookLM, Gemini in Google Apps, and 2 TB of storage, not a special API credit bundle.
Verification note: this guide was checked against Google's API-key guide, pricing page, Gemini 3 guide, rate-limits page, terms, troubleshooting docs, available-regions page, and the current US student page on April 2, 2026.
TL;DR
| Question | Current answer |
|---|---|
| Is there a student-only Gemini API key? | No. Google does not publish a separate student API credential. |
| Can a student still get a free Gemini API key? | Yes, if Gemini API free tier is available in their country. The path is Google AI Studio, not the student-plan page. |
| Does the current US student page include Gemini API credits? | Not explicitly. It lists Gemini app access, Gemini in Google Apps, NotebookLM, and 2 TB storage. |
Is gemini-3.1-pro-preview free in the Gemini API? | No. Google's current docs say you can try it in AI Studio, but there is no Gemini API free tier for it. |
| What models still have free API pricing? | Google's current pricing pages list free pricing for gemini-3-flash-preview, gemini-3.1-flash-lite-preview, gemini-3.1-flash-live-preview, gemini-2.5-pro, and gemini-2.5-flash. |
| Why can a "free" key still fail? | Free tier is region-limited, quotas are per project rather than per key, and Google's live limits now sit in AI Studio rather than one blog-friendly static table. |
The student offer and the Gemini API are not the same product

The fastest way to stop getting lost on this topic is to separate Google's two surfaces.
The current US student page is about Google AI Pro benefits around the Gemini app. The page's own FAQ lists Gemini app access, Gemini in Google Apps, NotebookLM, and 2 TB of cloud storage. It also says the previous student offer expired on March 11, 2026 in that region and now points students to a 1 month Google AI Pro trial. That is useful if your goal is better Gemini chat access, NotebookLM capacity, or Workspace integration.
The Gemini API key guide, by contrast, defines the developer path. It sends you to Google AI Studio, explains that API keys live inside Google Cloud projects, and says new users can receive a default project and API key after accepting the Terms of Service. That is the official route if you want to write code, make REST calls, or use the SDKs.
The practical consequence is simple: "Gemini free for students" does not automatically mean "Gemini API free for students." Google's current public pages describe the student surface as a Gemini app bundle, while the API docs describe developer access through AI Studio projects, pricing, rate limits, and billing. That is why students searching for a free Gemini API key often feel like Google is pointing them in two directions at once. It is not a hidden discount. It is two different contracts under the same brand.
Inference from those sources: if Google wanted the current student trial to function as an API credit program, the API docs or student FAQ would need to say so directly. The public pages checked on April 2, 2026 do not do that.
How students actually get a free Gemini API key today

If your goal is API access rather than Gemini app usage, the shortest safe path is:
- Go to Google AI Studio.
- Sign in with a Google account that has access in a supported region.
- Create a new project or import an existing Google Cloud project.
- Generate a Gemini API key for that project.
- Set it as
GEMINI_API_KEYorGOOGLE_API_KEYlocally and make your first request against a free-capable model.
Google's API-key page says API keys are created and managed in AI Studio, that new users may receive a default project and API key automatically, and that each Gemini API key is associated with a Google Cloud project. The same page also confirms that the official client libraries will pick up GEMINI_API_KEY or GOOGLE_API_KEY automatically.
For a quick smoke test, you can use a free-capable text model such as gemini-3-flash-preview:
bashcurl "https://generativelanguage.googleapis.com/v1beta/models/gemini-3-flash-preview:generateContent" \ -H "x-goog-api-key: $GEMINI_API_KEY" \ -H "Content-Type: application/json" \ -X POST \ -d '{ "contents": [{ "parts": [{"text": "Say hello from the Gemini API free tier."}] }] }'
Two prerequisites matter more than student status here.
First, the available-regions page says Gemini API and Google AI Studio are only available in supported countries and territories, and the terms say users must be 18+. Second, the troubleshooting guide is explicit that some users will hit the error that Gemini API free tier is not available in their country and will need to enable billing on the project in AI Studio. So the real free-tier question is not "am I a student?" It is "does my account and region qualify for AI Studio and Gemini API free tier right now?"
Which Gemini models are actually free in the API right now?

This is where the student-search phrasing becomes expensive. A free key does not give you free access to every Gemini model.
The current Gemini Developer API pricing page lists these routes with free API pricing:
| Model | Free in Gemini API? | What that means for student projects |
|---|---|---|
gemini-3-flash-preview | Yes | Good default no-cost route for general text and multimodal experimentation. |
gemini-3.1-flash-lite-preview | Yes | Better when you want the cheapest high-volume route. |
gemini-3.1-flash-live-preview | Yes | Relevant for real-time voice or live interaction projects. |
gemini-2.5-pro | Yes | Useful when you want a stronger reasoning model without paying for 3.1 Pro API. |
gemini-2.5-flash | Yes | Mature, practical general route for student prototypes. |
gemini-3.1-pro-preview | No | Paid-only in the Gemini API. |
gemini-3.1-flash-image-preview | No | Image-generation route is not on the API free tier. |
gemini-3-pro-image-preview | No | Higher-end image route is also paid-only. |
Google's Gemini 3 guide makes the 3.1 Pro boundary even clearer in its FAQ: you can try Gemini 3.1 Pro in AI Studio, but there is no free tier available for gemini-3.1-pro-preview in the Gemini API.
That distinction matters because many students are really asking one of two different questions:
- "Can I try Gemini 3.1 Pro in Google's interface for free?"
- "Can I call Gemini 3.1 Pro from my own app without paying?"
The first can still be true in AI Studio or consumer-product surfaces. The second is currently no in the public Gemini API contract. If you need the full 3.1 Pro API path, the deeper breakdown is in our Gemini 3.1 Pro API guide. If you want the broader model-cost map after you pick a route, our Gemini API pricing guide goes wider.
The limits that matter more than "free"
The most important free-tier mistake is assuming the API key itself carries the quota. Google's current rate-limits page says rate limits are applied per project, not per API key. If you generate three keys inside one project, you do not create three free pools. You create three doors into the same pool.
The second mistake is treating one copied table as the whole truth. The same rate-limits page now tells you to view your active rate limits in AI Studio and warns that specified rate limits are not guaranteed. That means a student building a real project should think in two layers:
- Which models still have free pricing on the public pricing page?
- What live limits does my project actually see in AI Studio today?
The third mistake is assuming "free" is only about price. Google's Gemini API Additional Terms say that when you use unpaid services, including AI Studio and unpaid Gemini API quota, Google may use submitted content and generated responses to provide, improve, and develop products, and human reviewers may read and process API input and output. That is why a free key can be fine for student prototypes, class demos, or personal experiments, but still be the wrong contract for sensitive research data, confidential coursework, or customer-facing work.
There is also a geography rule many student roundups ignore. The same terms page says you may use only Paid Services when making API clients available to users in the European Economic Area, Switzerland, or the United Kingdom. So even if a student can technically create a free key, that does not automatically make unpaid Gemini API the right launch surface for every app.
If you want the larger version of this free-tier story without the student framing, our Gemini API free-tier guide goes deeper into quota ownership, model eligibility, and billing tiers.
When Google AI Pro helps, and when paid Gemini API is the right move
The current student-facing Google AI Pro path is useful when your work lives mostly inside the Gemini app, NotebookLM, or Google Apps. If you want better chat access, more NotebookLM headroom, Workspace integration, or extra storage, the student/app surface can help.
The Gemini API is different. You should think about paid Gemini API when one of these becomes true:
- you need
gemini-3.1-pro-previewin code - free tier is not available in your country
- your project needs the paid-service data-handling contract
- your quotas in AI Studio stop matching the workload
- you are shipping a user-facing app where unpaid-service rules are not a fit
That is the decision frame most students actually need. The question is not whether Google has one magical "student AI" switch. The question is whether your job is using Gemini as a product or building on Gemini as an API. Once you separate those two, the route gets much clearer.
FAQ
Do I need a .edu email to create a free Gemini API key?
Google's current API docs do not describe any .edu requirement or student-verification step for Gemini API key creation. The public requirements that matter in the checked docs are AI Studio availability in your region and the 18+ age requirement. That means the stronger current inference is that student status is not what unlocks the key.
Is Gemini 3.1 Pro free for students in the Gemini API?
No. Google's current Gemini 3 guide says you can try Gemini 3.1 Pro in AI Studio, but there is no Gemini API free tier for gemini-3.1-pro-preview.
Why does my free key still hit limits so quickly?
Because quotas belong to the project, not the key, and because Google's live limit values now sit in AI Studio rather than one universal fixed table. Multiple keys in one project still share one quota bucket.
What if the student page says "free" but AI Studio asks me to enable billing?
That usually means you are looking at two different Google surfaces or you are in a country where Gemini API free tier is not available. The student page speaks to Google AI Pro app benefits. AI Studio speaks to the Gemini API contract for your project.
Students can still get a free Gemini API key in 2026, but the answer is smaller and more specific than the search phrase suggests. There is no special student API program to unlock. There is the standard Google AI Studio free tier, a current set of free-capable models, and a separate student-facing Gemini app offer that should not be mistaken for API credits.
