SSD Nodes Learn Hosting plans →
Guides Matt ConnorBy Matt Connor

Claude Pro in Brazil: what you actually pay

Claude Pro bills in US dollars. A Brazilian card adds its own exchange rate and a separate tax line, so the card statement is the number that matters.

What Claude Pro in Brazil actually costs

Claude Pro in Brazil is billed in US dollars, so there is no price in reais to look up. Anthropic charges a dollar amount. Your card issuer converts that amount to reais at its own rate, then adds Brazil's tax on foreign currency operations as a separate line on the same statement. Only the first of those steps appears on the pricing page, which is why the charge that lands is always bigger than the number people quote.

As of August 2026 the published price is 20 US dollars per month billed monthly, or 17 US dollars per month if you pay for a year in advance. Those two figures hold still. What happens to them between Anthropic and your bank does not, so plan your budget on the dollar number and read the reais number afterwards as a result.

ChartClaude plan list prices in US dollars per month, August 2026
The data behind this chart
[
  {
    "plan": "Pro, billed monthly",
    "usd_per_month": 20
  },
  {
    "plan": "Pro, billed annually",
    "usd_per_month": 17
  },
  {
    "plan": "Max 5x",
    "usd_per_month": 100
  },
  {
    "plan": "Max 20x",
    "usd_per_month": 200
  }
]

Max 5x and Max 20x are listed at 100 and 200 dollars per month. All of them pass through the same conversion and the same tax, so moving up a plan scales every step in the chain rather than only the base price. For what each dollar figure buys you in usage, the Pro list price and the session and weekly limits behind it covers the plan side in detail.

The chain, in the order it happens

  1. Anthropic bills in US dollars. The pricing page carries the note "Prices shown don't include applicable tax." In countries where Anthropic is registered to collect a consumption tax such as VAT (value added tax), that tax is added to the dollar invoice before your bank ever sees it. Brazil's international transaction tax does not work that way. It never appears on Anthropic's invoice.
  2. Your issuer converts dollars to reais. The rate is your bank's, and it is taken on the day the transaction settles through the card network. Settlement is usually a day or more after you clicked subscribe. That gap is why the amount on your statement rarely matches the figure you worked out at the moment of purchase, and it is not a mistake.
  3. The tax on the currency operation is added. In Brazil this is IOF (imposto sobre operações financeiras, the tax on financial operations). Your card issuer charges it, not Anthropic, and it lands as its own line rather than inside the purchase amount. The rate is set by government decree and has been changed more than once in recent years, so take the current figure from your own statement rather than from any article, this one included.

The order matters because each step applies to the output of the step before it. A rise in the dollar price moves all three numbers. A weaker real moves only the last two. The same chain runs in every country that Anthropic bills in dollars, and how the Claude Code price lands country by country walks through the variations you meet outside Brazil.

How to read your card statement

Open the statement for the month the charge landed, the fatura in Brazilian usage. Do not compare it against the pricing page. Compare it against itself.

A charge for a US-billed subscription normally leaves two marks. The purchase line shows the merchant, the original amount in dollars, and the converted amount in reais. Elsewhere on the same statement sits a separate line for the currency tax, which some issuers post per transaction and others group into one monthly entry. Add those two lines together. That total is what the month cost you.

Most issuers also print the exchange rate they used and the date they took it. Check that line, because it is the only place the bank's margin over the reference rate becomes visible. If the rate printed on your statement is noticeably worse than the commercial rate for that date, the gap is your issuer's spread. That is a cost of the card and not a cost of the subscription. Changing card changes it. Nothing you do inside Claude does.

Does annual billing cost less in Brazil than monthly?

Annual billing is one charge, so one conversion and one taxed event. Monthly billing is twelve of each. That sounds like it should matter more than it does, because the currency tax is charged as a percentage of the amount. Twelve small charges and one large charge covering the same total pay close to the same tax. Splitting the payment does not multiply the rate.

Four things genuinely do change:

  • The list price per month is lower on the annual plan: 17 dollars against 20.
  • One charge fixes your exchange rate once for the year. Twelve charges expose you to twelve rates nobody can predict in advance.
  • A flat fee per international transaction, if your issuer charges one, is paid once instead of twelve times. Check whether yours has one. A percentage fee behaves like the tax and does not care how you split the payment.
  • You pay the whole year up front, and you are committed for the year.

That last point is the real trade. If you are not sure the plan fits your work, monthly billing costs a little more each month and keeps the exit cheap. The full comparison of annual against monthly billing works through the commitment side, and what actually happens when you cancel or downgrade is worth reading before you pay for twelve months at once.

Paying in reais instead of dollars

Two routes charge you in reais. Both move the cost rather than removing it.

Subscribing inside the mobile app puts an app store between you and Anthropic. That purchase is billed in reais by a local entity, so it is a domestic transaction and the tax on foreign currency operations does not attach to it. The catch is that the store sets its own price tier in reais, and that tier is not a conversion of the dollar price. Claude's pricing page states that mobile pricing may vary depending on your app platform. Put the two totals side by side before you assume the reais route is cheaper.

The other route is a dollar account or global account from a Brazilian bank or fintech. The tax attaches to the currency operation itself, so funding the account becomes the taxed moment instead of the card purchase. Buying dollars in advance changes when you pay and at what rate you bought. It does not exempt you.

Does Pro hold for a full working day in Portuguese?

Pro includes Claude Code, and everything you do counts against one allowance. Anthropic's help centre states it plainly: "your usage of all different Claude product surfaces (claude.ai, Claude Code, Claude Desktop) counts towards the same usage limit." A day in the terminal and a day in the browser draw on the same pool.

Two limits run at the same time. The session limit resets every five hours. The weekly limit resets at a fixed time assigned to your account, and that time does not move with your subscription date. Your next reset is shown in Settings, under Usage.

Neither limit counts messages. Both count tokens, and a token is not a word. Anthropic's pricing documentation puts the ratio at "approximately 4 characters or 0.75 words in English" and adds that "the exact count varies by language and content type." That sentence is the honest answer to the Portuguese question. No count for Portuguese is published, and it is not the same as the English count, so the only figure you can trust is one you measure yourself.

If you hold an API key from the Console, the token counting endpoint measures it directly and is free to call:

curl https://api.anthropic.com/v1/messages/count_tokens \
  -H "x-api-key: $ANTHROPIC_API_KEY" \
  -H "content-type: application/json" \
  -H "anthropic-version: 2023-06-01" \
  -d '{
    "model": "claude-sonnet-5",
    "messages": [{"role": "user", "content": "Explique o que faz esta função."}]
  }'

The reply is a single field in the shape {"input_tokens": N}. Send the same request twice, once written in Portuguese and once in English, then compare the two counts. That ratio is yours, measured against the model you actually use, and it beats any number quoted second hand. Without an API key, the check inside Claude Code is /usage, which shows token usage and cost for the session, and /cost is an alias for the same command. Run it after a normal block of work and you will see where the allowance went.

One correction before you blame the language. The conversation you are carrying usually consumes far more of your allowance than the words you type into it. Every turn resends the whole thread, so a long Claude Code session on a large repository spends most of its tokens re-reading context that has nothing to do with Portuguese. Compacting the conversation or starting a fresh session recovers more allowance than switching language ever will. Why input tokens and output tokens carry different prices explains which half of that traffic is the expensive half.

The practical answer: a full day of ordinary chat and writing fits inside Pro comfortably. A full day of agentic coding in Claude Code, on a real codebase, is where people meet the five hour session limit. That is a workload question, and the language you work in barely moves it.

When Max or metered API access becomes the cheaper unit of work

Pro is a fixed price for an allowance. API access is metered per token, with no allowance at all. These are the published rates:

ChartClaude API list prices per million tokens in US dollars, August 2026
The data behind this chart
[
  {
    "label": "Claude Haiku 4.5",
    "input_usd_per_mtok": 1,
    "output_usd_per_mtok": 5
  },
  {
    "label": "Claude Sonnet 5",
    "input_usd_per_mtok": 2,
    "output_usd_per_mtok": 10
  },
  {
    "label": "Claude Opus 5",
    "input_usd_per_mtok": 5,
    "output_usd_per_mtok": 25
  }
]

At Sonnet 5's rate of 10 dollars per million output tokens, one month of Pro at the monthly price is worth roughly two million output tokens. Opus 5 output runs at 25 dollars per million, so the same money buys well under half as much. Real work mixes input and output, and input on Sonnet 5 is only 2 dollars per million, so treat those figures as a ceiling rather than a budget. The full comparison of metered API billing against a flat subscription does the arithmetic properly, and picking the right model for the task in front of you moves the total more than anything else on this page.

You do not have to guess where your own crossover sits. Pro and Max both offer usage credits, which are optional and switched on in Settings under Usage. With credits enabled, reaching your session limit gives you a notification and the choice to keep working, and the support documentation states that "subsequent usage will be billed at standard API pricing rates." That turns the credits line into an honest meter. Enable credits for one billing period, work as you normally would, then read what they cost.

That number decides the next step. Max 5x is listed at 100 dollars against Pro's 20, a difference of eighty dollars a month. If your credits spend is regularly larger than that difference, Max 5x is the cheaper unit of work, and the choice between Max 5x and Max 20x becomes the next question. If it is regularly smaller, Pro plus credits wins and you should stay where you are.

Here is the part that matters most for a Brazilian reader. Every step after the dollar price is proportional. The exchange rate and the currency tax scale each plan by the same factor, so they change your budget without changing which plan wins. You can run the whole comparison in dollars, decide, and convert once at the end. The one exception is the app store route, because a fixed price tier in reais is not proportional to the dollar price it sits beside. The practical ways to bring a Claude bill down work the same in Brazil as anywhere else, and whether Pro earns its price at all is the question sitting underneath this one.

The same chain applies to every US-billed service you buy from Brazil, hosting included. If you are already paying dollar invoices for infrastructure, choosing a VPS with low latency to Brazilian users runs into exactly the same statement arithmetic.

Before you subscribe

  • Put one small international charge on the card you plan to use, then read what the statement does with it. That shows you your issuer's spread and its tax handling for real, once, cheaply.
  • Choose monthly or annual on commitment and exchange rate exposure. The tax percentage will not decide it for you.
  • Note your weekly reset time in Settings under Usage on day one. It is fixed to your account, and it is the limit most people forget exists.
  • If you live in Claude Code, enable usage credits for one period and read the meter before you upgrade anything.

FAQ

Why is my Claude Pro charge in reais different from the dollar price times the rate I looked up?

Three things separate them. Your issuer converts at its own rate rather than the reference commercial rate, and the difference is the bank's spread. It takes that rate on the settlement date, which is usually later than your purchase date. The tax on the currency operation is then added as a separate line, so it is not inside the converted purchase amount at all. Add the purchase line and the tax line together on your statement, and that total is what the month cost.

Is annual billing cheaper than monthly for a Brazilian card holder?

The list price is lower: 17 dollars per month against 20, as published in August 2026. The currency tax is charged as a percentage, so paying once a year instead of twelve times does not reduce the rate you pay on it. What annual billing really buys is one exchange rate for the year instead of twelve you cannot forecast, plus a single international transaction if your issuer charges a flat fee per transaction. The cost is that you commit for a year.

Does Claude Pro include Claude Code, and do they share a usage limit?

Yes to both. Pro includes Claude Code, and Anthropic states that usage across claude.ai, Claude Code and Claude Desktop counts towards the same usage limit. A session limit resets every five hours, and a weekly limit resets at a fixed time assigned to your account. Run /usage inside Claude Code to see where your tokens went; /cost is an alias for the same command.

Is it cheaper to subscribe through the app store in Brazil?

Sometimes, and the only way to know is to compare the totals. An app store purchase made with a Brazilian account is billed in reais by a local entity, so it is a domestic transaction and the tax on foreign currency operations does not apply. Against that, the store sets its own price tier in reais, and Claude's pricing page notes that mobile pricing may vary depending on your app platform. Put the app store total next to the card statement total from a dollar-billed month and take the smaller one.