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

Central Bank of Argentina Exchange Rate API

Official Central Bank of Argentina (Argentina) daily exchange rates as JSON: 36 currencies, history back to 2000. The published ARS rates required for tax, audits, and compliant invoicing.

Argentina flagCentral Bank of Argentina official daily exchange rates as JSON: 36 currencies against the ARS, history back to 2000. Latest table on every plan. Get your API key.

About Central Bank of Argentina

The Central Bank of Argentina (BCRA) publishes daily official quotations for around 40 currencies against the peso. The USD rate is the Comunicación A 3500 reference rate — the benchmark used in Argentine financial contracts and regulation.

Quick start

One request for the pair you need — USD to ARS at the official Central Bank of Argentina rate:

curl "https://allratestoday.com/api/v1/central-bank/bcra/latest?source=USD&target=ARS" \
  -H "Authorization: Bearer art_live_your_key"

Or the bank's full published table:

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

On paid plans, any historical date or a time series:

curl "https://allratestoday.com/api/v1/central-bank/bcra/history?source=USD&target=ARS&from=2025-01-01" \
  -H "Authorization: Bearer art_live_your_key"

Latest published rates (2026-08-11)

The most recent table as published by Central Bank of Argentina — exactly what the /latest endpoint returns right now. Values are ARS per 1 unit of each currency:

Download this table: Excel (.xlsx) CSV

BaseQuoteTypeRate
AUD ARS reference 1052.14395
AWG ARS reference 832.681564
BOB ARS reference 126.635514
BRL ARS reference 288.761455
CAD ARS reference 1070.607671
CHF ARS reference 1835.817219
CLP ARS reference 1.630887
CNH ARS reference 220.919547
CNY ARS reference 220.958847
COP ARS reference 0.475894
CZK ARS reference 70.891121
DKK ARS reference 230.036732
EUR ARS reference 1719.7389
GBP ARS reference 2012.4731
HKD ARS reference 189.947623
ILS ARS reference 495.79217
INR ARS reference 15.61652
JPY ARS reference 9.355385
MXP ARS reference 87.147434
NIO ARS reference 40.462804
NOK ARS reference 156.929427
NZD ARS reference 876.56305
PEN ARS reference 442.981544
PYG ARS reference 0.249904
REF ARS reference 1492.179
RSD ARS reference 14.655735
RUB ARS reference 18.076242
SEK ARS reference 156.519091
SGD ARS reference 1164.18027
TRY ARS reference 31.222375
USD ARS reference 1490.5
UYU ARS reference 37.039798
VEB ARS reference 1.97257584
VND ARS reference 57.02862
XDR ARS reference 2036.127335
ZAR ARS reference 91.940906

Node.js / TypeScript client

A dedicated zero-dependency npm package wraps these endpoints — bcra-exchange-rate:

npm install bcra-exchange-rate
import { getRate } from 'bcra-exchange-rate';

const pair = await getRate('USD', 'ARS', { apiKey: 'art_live_...' });
console.log(pair.rate, pair.rate_date);

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

Why use the official Central Bank of Argentina rate?

Live market rates move continuously, but tax filings, customs declarations, audits, and statutory accounting in Argentina and beyond typically require the official rate published by Central Bank of Argentina for a given date — a fixed, citable number that never changes after publication. This API serves those published tables with the bank's own rate_date on every response; weekends and holidays return the most recent published date, which is the rate compliance rules require you to apply.

Pairs the bank doesn't print directly are resolved from its table (inverse or cross via ARS) and explicitly flagged "derived": true — so what the bank printed and what was computed are never confused.

Endpoints

Full parameter reference in the API documentation. Every request counts toward your plan's monthly quota — rates change once per business day, so caching a published table locally makes a small quota go far.

Frequently asked questions

Is there an API for Central Bank of Argentina exchange rates?

Yes — this one. Official daily ARS rates as clean JSON, latest table on every plan including free.

How often are the rates updated?

Central Bank of Argentina publishes once per business day; the API ingests each new table shortly after publication (latest: 2026-08-11).

Are these the official rates?

Yes — ingested from Central Bank of Argentina's own published data, served unmodified with the bank's publication date. Anything computed rather than published is flagged derived.

Central Bank of Argentina rates, one API key

Latest table on every plan. History back to 2000 on paid plans. No credit card to start.

Get Free API Key Read the Docs