Embed our calculators on your site

Writing about interest rates, loans or savings? Put the working calculator right inside your article. It is free, it takes one copy and paste, and there is nothing to sign up for.

The one condition

Keep the credit link visible. Under every embedded calculator there is a single discreet line — for example “Convertidor de tasas — por calculatorsmoney.com” — that links back to the full tool. That link is the whole payment. Do not hide it with CSS, do not strip it, do not add rel="nofollow" to it. Everything else is up to you: no attribution elsewhere on the page is required, and you do not need to ask permission first.

What the embedded version does — and does not — do

How to do it

  1. Pick a calculator from the table below and copy its snippet — or open the calculator itself and use the “Embed on your site” button next to the share buttons, which hands you the same code already filled in.
  2. Paste it into your article where you want the calculator to appear. In a block editor use a “custom HTML” / “code” block, not the visual editor.
  3. That is it. If your platform strips <script> tags, paste only the <iframe> line — the calculator still works, it just keeps the fixed height instead of adjusting itself.

The snippet

This is the code for the Spanish rate converter. For another tool, change the address in src and in the iframe[src*=…] selector to match the row you picked.

<iframe src="https://www.calculatorsmoney.com/es/conversor-tasas?embed=1" width="100%" height="560" style="border:1px solid #e5e7eb;border-radius:12px" title="Convertidor de tasas" loading="lazy"></iframe>
<script>addEventListener("message",function(e){if(e.origin!=="https://www.calculatorsmoney.com")return;if(e.data&&e.data.tipo==="altura-calculadora"){var f=document.querySelector('iframe[src*="/es/conversor-tasas"]');if(f)f.style.height=e.data.altura+"px";}});</script>
The listener checks e.origin before it touches anything. Keep that check: it is what stops any other frame on your page from resizing ours — and it is the same discipline you should apply to every message listener you install.

Calculators you can embed today

CalculatorLanguageAddress to put in srcSuggested height
Convertidor de tasas de interésSpanish/es/conversor-tasas?embed=1560
Convertitore di tassi d'interesseItalian/it/convertitore-tassi?embed=1560

The interface of the embedded calculator is always in the language of the address you use, so a Spanish article gets a Spanish calculator. More tools and more languages are being added — if the one you need is not here yet, write to us and we will prioritise it.

🔢 What it looks like in practice

A personal-finance blog explains why a card that charges 2% a month is not charging 24% a year, and pastes the first snippet under the explanation. The reader types 2 and picks “month”, and sees 26.8242% a year appear straight away, without leaving the article. Under the result there is one grey line linking back to the full rate converter, where the reader can also see the derivation, the worked examples and the frequently asked questions.

Questions people ask

Is it really free?

Yes. There is no fee, no account and no key to request. The only condition is that the credit link shown under the calculator stays visible and stays a working link.

Will it show advertising on my site?

No. The embedded version loads no advertising script at all — no ad request is made. It also loads no audience measurement, so it sets no analytics cookie on your visitors.

Will the embed compete with my page in search results?

No. The embedded address carries a noindex directive and its canonical still points at our own full page, so search engines keep indexing your page, not the frame.

How does the frame get the right height?

The embedded page measures its own content and posts the height to your page with postMessage. The snippet includes a short listener that checks the sender origin and then sets the iframe height. Without the listener the frame still works, it just keeps the fixed height you set.

Can I change the look of it?

You control the frame: width, border, corner radius and margins are all yours in the style attribute. The inside of the calculator is not customisable, and that is deliberate — one appearance means one thing to maintain and no version of the tool that silently drifts out of date.

Can I embed it on a commercial site?

Yes, including on sites that carry their own advertising. The credit link condition is the same everywhere.

Will the address keep working?

These are the canonical addresses of the calculators and we intend to keep them. If one ever has to move, the old address will redirect.

Something is wrong with the embed. Who do I tell?

Write to contact@calculatorsmoney.com with the address of the page you embedded it on. A broken embed on someone else's site is our problem to fix.

A note on the money tools: these calculators are for information and education. They are not financial advice and they do not account for the fees, taxes and insurance a specific contract may add. Every embedded calculator carries its own disclaimer inside the frame, and that disclaimer must stay visible too.

By Vinicius Fonseca · How we calculate → · Updated Aug 2026