SSD Nodes Learn 8GB RAM — $66/yr
Guides Matt ConnorBy Matt Connor

Claude for students: what it costs in 2026

There is no individual student discount on Claude as of July 2026. Here is the free tier, the university route, and a coursework month costed on the API.

What does Claude cost a student?

Claude for students costs either nothing or the full retail price, because as of July 2026 there is no individual student discount in between. Anthropic's published pricing carries no verified-student rate, no .edu code, and no academic tier you can buy on your own. What a student does get is a free plan that covers a lot of coursework, a university-wide plan that the institution buys, and a pay-as-you-go API that can run a whole term for the price of a coffee.

This post states exactly what is offered and what is not, with every price stamped with the date I read it. Prices move. Treat claude.com/pricing as the source of truth and this page as the explanation.

Is there a student discount on Claude?

No, not as an individual purchase. Here is the precise shape of it as of July 2026.

  • Not offered: a discounted Pro or Max price for verified students, a student promo code, or a cheaper rate for a .edu email address. None of these appear on the pricing page.
  • Offered: Claude for Education, described by Anthropic as "a comprehensive university-wide plan for an institution, including its students, faculty, and staff". The institution buys it. A student cannot purchase it directly.
  • Also true: the free plan is real and is not a trial. It does not expire.

Any site selling you a "Claude student code" is selling you something Anthropic does not issue. Some of those pages resell shared logins, which breaks the terms you agreed to and can get the account closed. There is no code to hunt for, so stop hunting and pick one of the three real routes below.

The retail prices those routes are measured against, read on 30 July 2026: Free is $0. Pro is $20 per month billed monthly, or $17 per month on the annual plan, which bills $200 up front. Max starts at $100 per month. Team seats start at $20 per seat per month billed annually. If you are weighing the tiers against each other, which Claude plan fits the way you work walks through the whole lineup.

What the free plan actually gives you

The free tier is the first thing a student should exhaust, because it is more capable than its price suggests. As of July 2026 it includes web search, file creation, code execution, connectors, and extended thinking. You talk to the same models a paying user talks to. What you are buying on a paid plan is volume and plumbing, not a smarter Claude.

Two things the free plan does not include matter to students. Claude Code, the terminal coding agent, starts at Pro. And the free allowance is small enough that a heavy afternoon of essay drafting will hit it.

When you hit it you get a message naming the reset time, something like You've hit your session limit. That is a subscription limit, not an error, and switching model does not clear it. What to do when you hit a Claude usage limit covers the difference between that wall and the API's separate rate limits.

For a student on free, the practical rhythm is simple. Do the thinking-heavy work in one focused block, because the allowance resets on a rolling window rather than at midnight. Save the long back-and-forth for when the window has refilled.

Claude for Education: the route through your university

Claude for Education is the only official discounted access, and your institution has to be the buyer. If your university has signed up, you get access with your student account at no personal cost. Ask your IT service desk or the library first, since the licence often exists before students hear about it.

The version sold to universities adds a study-oriented behaviour Anthropic calls learning mode, which it describes as working "like a good tutor: it asks questions that help you find the answers yourself" so that students build transferable skills instead of collecting answers. That framing matters for academic integrity policies, which is usually the reason a department agrees to it.

If your university has not signed up, one email to whoever owns software licensing costs you nothing. If they have, you are done reading.

The API is the real budget path

If you want more than the free plan and $20 a month is not in your budget, the Claude API is the answer most students skip. You create an account on the Claude Console, add a payment method, and pay per token with no monthly fee and no allowance to run out of. There is no wall. There is only a meter, and for a coursework workload that meter is very cheap.

The prices per million tokens (written as MTok in the docs), as of July 2026:

  • claude-haiku-4-5: $1 input, $5 output. 200K context.
  • claude-sonnet-5: $2 input, $10 output on introductory pricing through 31 August 2026, then $3 and $15. 1M context.
  • claude-opus-4-8: $5 input, $25 output. 1M context.

A million tokens is roughly 750,000 words, so the unit is much larger than a student workload. That is the whole reason the API wins here.

The catch is honest and worth stating: the API gives you no chat interface. You get a key and an endpoint, and you either use a client that accepts a key or write a few lines of code. One request looks like this.

curl https://api.anthropic.com/v1/messages \
  -H "x-api-key: $ANTHROPIC_API_KEY" \
  -H "anthropic-version: 2023-06-01" \
  -H "content-type: application/json" \
  -d '{"model":"claude-haiku-4-5","max_tokens":1024,"messages":[{"role":"user","content":"Explain the Nyquist limit in two paragraphs."}]}'

A healthy response is JSON containing a content array with the answer and a usage block reporting input_tokens and output_tokens. Those two numbers are your bill for that request. If you get {"type":"error","error":{"type":"authentication_error"}} back instead, the key in ANTHROPIC_API_KEY is unset or wrong, because the API rejects the request before the model ever sees it.

If you would rather keep a chat window, the arithmetic behind the API and a flat plan shows where the two lines cross.

A worked month for a coursework workload

Numbers beat adjectives, so here is a full month costed out with the assumptions written down. Change the assumptions and the answer changes, which is the point.

Assume a study question sends about 2,000 input tokens, which is your question plus a page or two of lecture notes, and gets back about 800 tokens. On claude-haiku-4-5 that is 2,000 at $1 per MTok, which is $0.002, plus 800 at $5 per MTok, which is $0.004. Call it $0.006 per question.

Fifteen questions a day across 20 study days is 300 questions, or about $1.80 for the month.

Now add the heavier jobs. Summarising a 40-page reading is roughly 30,000 input tokens and 1,500 output tokens. On claude-sonnet-5 at the introductory rate that is $0.06 of input plus $0.015 of output, so about $0.075 per reading. Ten of those in a month adds $0.75.

Total for the month: a little over $2.50, against $20 for Pro. The gap holds until your usage stops looking like coursework and starts looking like a job, which for most students is around the point where you are running an agent all day rather than asking questions.

One more lever if you are patient. Anthropic's Batch API processes requests asynchronously "with a 50% discount on both input and output tokens". Most batches finish inside an hour and anything not done in 24 hours expires. For a pile of readings you want summarised by tomorrow rather than right now, that halves an already small bill.

Pick the cheaper model on purpose

Model choice moves a student's bill more than anything else, because every model in the range prices output at five times its input rate. Haiku 4.5 costs a fifth of Opus 4.8 on both sides of the meter.

For mechanical work where you already know what a correct answer looks like, such as reformatting citations, extracting definitions, or translating notes, Haiku 4.5 is the right default. Reach for Sonnet 5 when the task is genuinely open, like reasoning through a proof or reviewing an argument. Opus 4.8 earns its price on hard agentic work, which is rarely what an essay needs. Choosing between Opus, Sonnet and Haiku goes through the tradeoff properly.

Before you commit a big prompt, you can price it exactly. The token counting endpoint is free and tells you the input size before you spend anything on output.

curl https://api.anthropic.com/v1/messages/count_tokens \
  -H "x-api-key: $ANTHROPIC_API_KEY" \
  -H "anthropic-version: 2023-06-01" \
  -H "content-type: application/json" \
  -d '{"model":"claude-haiku-4-5","messages":[{"role":"user","content":"Explain the Nyquist limit."}]}'

The reply is a single field, input_tokens. Multiply it by the input rate above and you know what the request costs before you send it. Do not estimate token counts with a tokenizer built for another vendor's models, because the counts differ enough to make your budget wrong.

Keep your numbers easy to refresh

Every figure on this page has a date on it because AI pricing changes several times a year, and a stale number is worse than no number. Two habits keep you accurate.

Read the pricing page on the day you decide, not the day you researched. The plan fees and the per-token rates both live there, and a post like this one is a snapshot by definition.

Then read your own meter rather than anyone's estimate. On a subscription the /usage view shows your remaining allowance. On the API, the usage block on every response is the ground truth for that request, and the Console shows the running total. Your own numbers are always more accurate than a worked example built on someone else's assumptions.

FAQ

Does Anthropic offer a student discount on Claude Pro?

No. As of July 2026 there is no individual student rate, student promo code, or academic discount on Claude Pro or Max. The only official education pricing is Claude for Education, which is a university-wide plan that the institution buys rather than something a student can purchase. Sites advertising Claude student codes are not issuing anything Anthropic recognises.

Is the free Claude plan enough for university coursework?

For most students, yes, with one caveat. The free plan as of July 2026 includes web search, file creation, code execution, connectors, and extended thinking, so it handles reading, drafting and explanation work. It does not include Claude Code, and its usage allowance is small enough that a long drafting session will hit the limit. When it does, you wait for the rolling window to reset.

How do I get Claude for Education at my university?

You cannot buy it yourself. Ask your IT service desk, library, or whoever owns software licensing whether the institution has a Claude for Education agreement. If it does, your access comes through your student account at no personal cost. If it does not, the request has to come from a department rather than from an individual student.

Is the Claude API cheaper than a subscription for a student?

Usually, yes. A coursework workload of roughly 300 short questions plus ten long readings costs a little over $2.50 a month on the cheaper models at July 2026 rates, against $20 a month for Pro. The API charges per token with no monthly fee, so light use costs very little. It becomes more expensive than a plan once you are working with Claude for hours every day rather than asking questions.

What do I lose by using the API instead of a plan?

The interface, mainly. The API gives you a key and an endpoint, so you supply your own client or write a small script. You also lose Claude Code's subscription features and the longer prompt cache that comes with a plan. In exchange you get exact per-request costs and no usage wall.

#claude#students#pricing#education#ai