Bank of Russia
Central Bank of Russia daily FX rates, served as JSON
A community JSON mirror of the Bank of Russia's official daily exchange-rate fixing, which the central bank itself publishes only as XML/SOAP. A single GET returns every listed currency's ruble value alongside the previous day's rate, making day-over-day deltas trivial. No key, CORS-open, and refreshed each business day around 11:30 Moscow time.
GET https://www.cbr-xml-daily.ru/daily_json.js
{
"Date": "2026-07-04T11:30:00+03:00",
"PreviousDate": "2026-07-03T11:30:00+03:00",
"Timestamp": "2026-07-05T19:00:00+03:00",
"Valute": {
"USD": {
"CharCode": "USD",
"Nominal": 1,
"Name": "Доллар США",
"Value": 77.2264,
"Previous": 77.9293
}
}
}curl "https://www.cbr-xml-daily.ru/daily_json.js"const res = await fetch("https://www.cbr-xml-daily.ru/daily_json.js");
const data = await res.json();
console.log(data);import requests
res = requests.get("https://www.cbr-xml-daily.ru/daily_json.js")
print(res.json())/daily_json.jsPROBEDCentral Bank of Russia daily FX rates, served as JSON
/daily_json.js?limit=5Paginated variant with limit parameter.
We probe a documented GET and expect 2xx JSON — full uptime and health score. Export includes every documented route below.
Stable. No schema drift observed since monitoring began — the response shape has not changed under our checks.
Bank of Russia: common questions
Is Bank of Russia free to use?
Yes — Bank of Russia is a free finance API. Free tier: Free — limits not published. Whether the free tier allows commercial use is unclear — check the provider docs.
Does Bank of Russia need an API key?
No — Bank of Russia needs no API key or signup. You can call it straight away; rate limits still apply (Unpublished).
Can I call Bank of Russia from the browser?
Yes — Bank of Russia returns CORS headers over HTTPS, so front-end code can fetch it directly with no backend proxy. Use the fetch snippet on this page, or hit "Run live" to try it now.
Is Bank of Russia up right now?
As of our last scheduled check, Bank of Russia is healthy with 100% uptime over 90 days and a 648 ms median response. We re-probe it every sweep — the status badge and uptime chart above always show the latest.