Home Documentation Central Bank Rates Tax Authority Rates Playground Pricing API Status Blog About FAQ Contact Us

Banca d'Italia Exchange Rate API: Official EUR Rates as JSON

Reviewed by Madhushan, Fintech Developer — August 2026

The Banca d'Italia publishes the official exchange rates that accounting, tax, and customs rules in Italy reference — published official rates, not moving market prices. This guide shows how to pull them as JSON: via a REST endpoint or the zero-dependency bdi-exchange-rate npm package.

EUR → USD — official Banca d'Italia daily reference rate
Weekly observations, Aug '25 – Aug '26 · US dollars per 1 euro
1.1401.1601.180Aug '25Nov '25Feb '26May '26Aug '261.1542025-08-08: 1.165 USD2025-08-15: 1.169 USD2025-08-22: 1.161 USD2025-08-29: 1.166 USD2025-09-05: 1.170 USD2025-09-12: 1.172 USD2025-09-19: 1.174 USD2025-09-26: 1.167 USD2025-10-03: 1.173 USD2025-10-10: 1.157 USD2025-10-17: 1.168 USD2025-10-24: 1.161 USD2025-10-31: 1.155 USD2025-11-07: 1.156 USD2025-11-14: 1.165 USD2025-11-21: 1.152 USD2025-11-28: 1.157 USD2025-12-05: 1.165 USD2025-12-12: 1.173 USD2025-12-19: 1.171 USD2025-12-24: 1.179 USD2025-12-31: 1.175 USD2026-01-02: 1.172 USD2026-01-09: 1.164 USD2026-01-16: 1.162 USD2026-01-23: 1.174 USD2026-01-30: 1.192 USD2026-02-06: 1.179 USD2026-02-13: 1.186 USD2026-02-20: 1.177 USD2026-02-27: 1.181 USD2026-03-06: 1.156 USD2026-03-13: 1.148 USD2026-03-20: 1.155 USD2026-03-27: 1.152 USD2026-04-02: 1.153 USD2026-04-10: 1.171 USD2026-04-17: 1.180 USD2026-04-24: 1.171 USD2026-04-30: 1.170 USD2026-05-08: 1.176 USD2026-05-15: 1.163 USD2026-05-22: 1.159 USD2026-05-29: 1.164 USD2026-06-05: 1.164 USD2026-06-12: 1.157 USD2026-06-19: 1.147 USD2026-06-26: 1.140 USD2026-07-03: 1.145 USD2026-07-10: 1.143 USD2026-07-17: 1.143 USD2026-07-24: 1.138 USD2026-07-31: 1.149 USD2026-08-07: 1.153 USD2026-08-11: 1.154 USD
Source: Banca d'Italia published rates · chart data from the AllRatesToday API (/api/v1/central-bank/bdi/history?source=EUR&target=USD).

What the Banca d'Italia publishes

The USD/EUR rate anchors the table, but the breadth is the point: where the ECB publishes ~30 reference rates, the Banca d'Italia concertation covers ~163 currencies — and it is the series Italian tax and accounting practice cites for euro conversion.

Why official rates, not market rates

A live mid-market feed answers "what is USD/EUR trading at right now?" — the right tool for checkouts and dashboards. But accountants, auditors, and tax authorities ask a different question: "which rate were you required to use for this date?" That answer comes from the Banca d'Italia's published rates, and it never changes after publication.

Get the latest rates (REST)

curl "https://allratestoday.com/api/v1/central-bank/bdi/latest" \
  -H "Authorization: Bearer YOUR_API_KEY"

The response is the bank's most recent published data — every rate and the publication date. The latest rates are available on every plan, including the free tier (300 requests/month, no credit card).

The npm SDK

npm install bdi-exchange-rate
import { getRate, getLatestRates } from 'bdi-exchange-rate';

// One pair at the official Banca d'Italia rate
const pair = await getRate('USD', 'EUR', { apiKey: 'art_live_...' });
console.log(pair.rate, pair.rate_date);

// The bank's full published table
const table = await getLatestRates({ apiKey: 'art_live_...' });
console.log(table.rate_date, table.rates.length);

Zero dependencies, TypeScript types included, and it runs anywhere fetch exists — Node 18+, Bun, Deno, and edge runtimes.

Historical rates for an invoice date

import { getRatesForDate, getHistory } from 'bdi-exchange-rate';

// The official rates for an invoice date — non-publication days return
// the most recent published date, flagged via published_on_requested_date.
const day = await getRatesForDate('2026-06-30', { apiKey: 'art_live_...' });

// Time series for one pair
const series = await getHistory(
  { source: 'USD', target: 'EUR', from: '2026-01-01' },
  { apiKey: 'art_live_...' }
);

Historical dates and time series need a paid plan; the latest rates stay free.

Published vs derived pairs

If the Banca d'Italia does not print a pair directly, the API resolves it from the bank's published rates — an inverse, or a cross rate via EUR — and flags it derived: true with the method used. Official and computed values are never silently mixed, which is exactly the distinction an auditor will ask about.

A decade of the widest euro table

Our archive runs from 2016 — through the euro's slide to parity with the dollar in 2022 and back — across all ~163 quoted currencies. When an Italian audit asks for the official rate on an invoice date, in any currency from the Albanian lek to the Zambian kwacha, the answer is one API call away.

FAQ

Does the Banca d'Italia have an official exchange rate API?

The Banca d'Italia publishes its official rates on its own site, and AllRatesToday serves the same published rates as clean JSON via REST or the bdi-exchange-rate npm package. The latest table is free.

How often do Banca d'Italia rates update?

Once per business day, via the joint ESCB concertation procedure in the early afternoon CET. These are published official rates, not moving market prices — every API response carries the publication date so you can cite it.

Can I get the Banca d'Italia rate for a past date, like an invoice date?

Yes. The /central-bank/bdi/rates-for-date endpoint returns the official rates for any archived date. Non-publication days resolve to the most recent published date and are flagged, so your audit trail stays honest. Historical dates require a paid plan; latest rates are free.

Official Banca d'Italia rates, as JSON

The latest rates are free — 300 requests/month, no credit card.

Get your free API key

Related Articles