Bank of Russia Exchange Rate API

Official Bank of Russia rates for 9 Sept 2026: 1 USD = 86.473 RUB, 1 EUR = 100.50 RUB. All 53 currencies published, history back to 2016. Free JSON API for tax, audits, and compliant invoicing.

Russia flagBank of Russia: every RUB rate the bank publishes, as JSON. 53 currencies, archive back to 2016, latest table free on every plan. Get your API key.

About Bank of Russia

The Bank of Russia is the central bank of the Russian Federation. It sets official ruble exchange rates for dozens of currencies once per business day, announced in the afternoon Moscow time and effective for the following calendar day.

Quick start

One request for the pair you need — USD to RUB at the official Bank of Russia rate:

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

Or the bank's full published table:

curl "https://allratestoday.com/api/v1/central-bank/cbr/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/cbr/history?source=USD&target=RUB&from=2025-01-01" \
  -H "Authorization: Bearer art_live_your_key"

Latest published rates (2026-09-09)

Bank of Russia's newest published table, verbatim — the same rows the /latest endpoint returns at this moment. Values are RUB per 1 unit of each currency:

Download this table: Excel (.xlsx) CSV

Download history:
Choose currencies: USD
Excel (.xlsx) CSV

One row per currency per publication date. Up to one year per download. Billed as one API call per currency per month of data.

BaseQuoteTypeRate
AED RUB reference 23.5461
AMD RUB reference 0.237798
AUD RUB reference 62.4162
AZN RUB reference 50.8665
BDT RUB reference 0.703542
BHD RUB reference 229.9317
BOB RUB reference 6.86294
BRL RUB reference 16.8728
BYN RUB reference 28.1488
CAD RUB reference 62.4805
CHF RUB reference 106.5201
CNY RUB reference 12.8842
CUP RUB reference 3.60304
CZK RUB reference 4.15057
DKK RUB reference 13.4454
DZD RUB reference 0.650035
EGP RUB reference 1.6938
ETB RUB reference 0.537365
EUR RUB reference 100.4989
GBP RUB reference 117.1277
GEL RUB reference 33.0959
HKD RUB reference 11.0269
HUF RUB reference 0.27491
IDR RUB reference 0.00489849
INR RUB reference 0.912954
JPY RUB reference 0.562609
KGS RUB reference 0.988828
KRW RUB reference 0.0644071
KZT RUB reference 0.190339
MDL RUB reference 5.01977
MMK RUB reference 0.0411776
MNT RUB reference 0.0240494
NGN RUB reference 0.0654822
NOK RUB reference 9.32796
NZD RUB reference 50.8072
OMR RUB reference 224.8973
PLN RUB reference 23.2661
QAR RUB reference 23.7563
RON RUB reference 19.121
RSD RUB reference 0.856619
SAR RUB reference 23.0595
SEK RUB reference 9.00367
SGD RUB reference 68.3635
THB RUB reference 2.63036
TJS RUB reference 9.35713
TMT RUB reference 24.7066
TRY RUB reference 1.787
UAH RUB reference 1.94455
USD RUB reference 86.473
UZS RUB reference 0.00733485
VND RUB reference 0.00337746
XDR RUB reference 118.6314
ZAR RUB reference 5.38156

Node.js / TypeScript client

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

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

const pair = await getRate('USD', 'RUB', { 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: cbr-exchange-rate documentation.

Why use the official Bank of Russia rate?

A market rate is a moving target; the rate Bank of Russia publishes is a fixed, citable figure that stays put once printed — which is why invoicing, customs, audit evidence, and statutory accounting in Russia lean on it rather than on a live feed. Every response from this API carries the bank's own rate_date, and on days with no publication you get the most recent published table — the one compliance rules tell you to apply.

If a pair isn't in the bank's published table, the API computes it from that table (inverse or cross via RUB) and marks it "derived": true — published and computed values are never silently mixed.

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

Does an exchange rate API exist for Bank of Russia data?

Yes. This endpoint returns Bank of Russia's official daily figures as JSON; the newest table is free on every plan.

How often are the rates updated?

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

Are these really Bank of Russia's official figures?

Yes. Every value comes from Bank of Russia's own publication and is served unmodified, carrying the bank's publication date; computed pairs are explicitly flagged derived.

Bank of Russia rates, one API key

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

Get Free API Key Read the Docs