Home Documentation Bank Rates Playground Pricing API Status Blog About FAQ Support

BCRA Exchange Rate API: Official ARS Rates as JSON

Reviewed by Madhushan, Fintech Developer — August 2026

Central Bank of Argentina publishes official exchange rates — ~38 currencies against the ARS — and these are the published official rates used for tax filings, audits, and compliant invoicing in Argentina, not moving market prices. This guide shows how to pull them as JSON: via a REST endpoint or the zero-dependency bcra-exchange-rate npm package, with history back to 2000.

USD → ARS — official Central Bank of Argentina Comunicación A 3500 reference rate
Weekly observations, Aug '26 – Aug '26 · ARS per 1 USD
1,4901,500Aug '261,4962026-08-04: 1,496 ARS
Source: Central Bank of Argentina published rates · chart data from the AllRatesToday API (/api/v1/central-bank/bcra/history?source=USD&target=ARS).

What the BCRA publishes

The USD rate is the Comunicación A 3500 benchmark — the rate Argentine regulation, contracts, and court rulings cite.

Why official rates, not market rates

A live mid-market feed answers "what is USD/ARS 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 central bank's published rates, and it never changes after publication.

Get the latest rates (REST)

curl "https://allratestoday.com/api/v1/central-bank/bcra/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 bcra-exchange-rate
import { getRate, getLatestRates } from 'bcra-exchange-rate';

// One pair at the official Central Bank of Argentina rate
const pair = await getRate('USD', 'ARS', { 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 'bcra-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: 'ARS', 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 BCRA does not print a pair directly, the API resolves it from the bank's published rates — an inverse, or a cross rate via ARS — 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.

FAQ

Does Central Bank of Argentina have an official exchange rate API?

Central Bank of Argentina publishes its official rates on its website, but not always in a developer-friendly form. AllRatesToday serves the bank's published rates as clean JSON — ~38 currencies against the ARS, with history back to 2000 — via REST or the bcra-exchange-rate npm package. The latest table is free.

How often do Central Bank of Argentina rates update?

Once per business day. These are published reference rates, not moving market prices — the table changes when the bank publishes a new one, and every API response carries the bank's own publication date so you can cite it.

Can I get the Central Bank of Argentina rate for a past date, like an invoice date?

Yes. The /central-bank/bcra/rates-for-date endpoint returns the official rates for any date back to 2000. 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 Central Bank of Argentina rates, as JSON

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

Get your free API key

Related Articles