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

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 daily 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-04)

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:

BaseQuoteTypeRate
AUD ARS reference 1053.0344
AWG ARS reference 835.75419
BOB ARS reference 123.84106
BRL ARS reference 292.170381
CAD ARS reference 1063.028494
CHF ARS reference 1846.91358
CLP ARS reference 1.640207
CNH ARS reference 221.682177
CNY ARS reference 221.62963
COP ARS reference 0.468087
CZK ARS reference 71.313484
DKK ARS reference 230.632853
EUR ARS reference 1723.9904
GBP ARS reference 2011.2224
HKD ARS reference 190.73361
ILS ARS reference 497.836938
INR ARS reference 15.684021
JPY ARS reference 9.491784
MXP ARS reference 86.604646
NIO ARS reference 40.689325
NOK ARS reference 156.632813
NZD ARS reference 881.144
PEN ARS reference 441.336991
PYG ARS reference 0.250952
REF ARS reference 1496.4509
RSD ARS reference 14.691195
RUB ARS reference 18.555039
SEK ARS reference 156.994438
SGD ARS reference 1166.653669
TRY ARS reference 31.462877
USD ARS reference 1496
UYU ARS reference 37.169456
VEB ARS reference 2.00279105
VND ARS reference 56.929751
XDR ARS reference 2042.39904
ZAR ARS reference 91.250671

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 day's 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-04).

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