Central Bank of Armenia Exchange Rate API
Official Central Bank of Armenia rates for 10 Sept 2026: 1 USD = 363.89 AMD, 1 EUR = 423.09 AMD. All 30 currencies published, history back to 2000. Free JSON API for tax, audits, and compliant invoicing.
About Central Bank of Armenia
The Central Bank of Armenia publishes daily reference dram rates for 30 currencies — including gold and silver — each business afternoon. These are the rates Armenian tax and customs law references, with history back to 2000.
- Official website: www.cba.am
- Official rate publication: Exchange rate archive
Quick start
One request for the pair you need — USD to AMD at the official Central Bank of Armenia rate:
curl "https://allratestoday.com/api/v1/central-bank/cba/latest?source=USD&target=AMD" \
-H "Authorization: Bearer art_live_your_key" Or the bank's full published table:
curl "https://allratestoday.com/api/v1/central-bank/cba/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/cba/history?source=USD&target=AMD&from=2025-01-01" \
-H "Authorization: Bearer art_live_your_key" Latest published rates (2026-09-10)
Below is the current table from Central Bank of Armenia, unmodified — what a call to /latest returns right now, with values AMD per 1 unit of each currency:
Download this table: Excel (.xlsx) CSV (paid plan required)
One row per currency per publication date. Up to one year per download. Billed as one API call per currency per month of data.
Prefer a bulk file? The complete archive of every source is also published as an open dataset: central-bank-exchange-rates on Hugging Face
| Base | Quote | Type | Rate |
|---|---|---|---|
AED | AMD | reference | 99.072 |
AUD | AMD | reference | 261.93 |
BRL | AMD | reference | 71.228 |
BYN | AMD | reference | 118.99 |
CAD | AMD | reference | 263.36 |
CHF | AMD | reference | 448.64 |
CNY | AMD | reference | 54.25 |
CZK | AMD | reference | 17.445 |
EUR | AMD | reference | 423.09 |
GBP | AMD | reference | 492.6 |
GEL | AMD | reference | 139.43 |
HKD | AMD | reference | 46.406 |
INR | AMD | reference | 3.8211 |
IRR | AMD | reference | 0.00026468 |
JPY | AMD | reference | 2.3617999999999997 |
KGS | AMD | reference | 4.1595 |
KZT | AMD | reference | 0.8078900000000001 |
NOK | AMD | reference | 39.303 |
NZD | AMD | reference | 212.33 |
PLN | AMD | reference | 97.904 |
RUB | AMD | reference | 4.2891 |
SEK | AMD | reference | 37.847 |
SGD | AMD | reference | 287.41 |
TJS | AMD | reference | 39.376 |
UAH | AMD | reference | 8.1723 |
USD | AMD | reference | 363.89 |
UZS | AMD | reference | 0.030876999999999998 |
XAG | AMD | reference | 24109.549006752 |
XAU | AMD | reference | 1606525.6801968 |
XDR | AMD | reference | 499.94 |
Node.js / TypeScript client
A dedicated zero-dependency npm package wraps these endpoints — cba-exchange-rate:
npm install cba-exchange-rate import { getRate } from 'cba-exchange-rate';
const pair = await getRate('USD', 'AMD', { 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.
Full reference — installation, all four functions, response shapes, error codes: cba-exchange-rate documentation.
Why use the official Central Bank of Armenia rate?
When an auditor or tax office in Armenia asks which rate you used, "the AMD mid-market rate at 14:32" is not an answer — the official rate published by Central Bank of Armenia for that date is. This API returns exactly those published figures, stamped with the bank's own rate_date; on weekends and holidays the most recent published table is returned, as compliance rules expect.
Pairs the bank doesn't print directly are resolved from its table (inverse or cross via AMD) and explicitly flagged "derived": true — so what the bank printed and what was computed are never confused.
Endpoints
GET /api/v1/central-bank/cba/latest— latest table or single pair (all plans)GET /api/v1/central-bank/cba/{YYYY-MM-DD}— the table for any date (paid plans)GET /api/v1/central-bank/cba/history— time series, up to 5,000 rows (paid plans)GET /api/v1/central-bank/cba/availability— publication calendar: the dates the bank actually published (all plans)
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 Armenia exchange rates?
Yes — this one. Official daily AMD rates as clean JSON, latest table on every plan including free.
How often does Central Bank of Armenia update its rates?
New tables land once per business day — the API picks each one up shortly after Central Bank of Armenia publishes it (latest: 2026-09-10).
Is this the official published table?
Yes — the rows are Central Bank of Armenia's published figures, untouched, with the original publication date attached. Pairs the bank didn't print are computed and flagged derived.
Central Bank of Armenia 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