Bank of Russia

Central Bank of Russia daily FX rates, served as JSON

📈 FinanceUNMONITORED
AUTH NONECORS AGENT ?HTTPS COMMERCIAL ?

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.

HOW IT'S SCORED ⓘ
Status badge · for your READMEshipapis health badge: — · unmonitored
ON PROBE SCHEDULE

We probe a documented GET and expect 2xx JSON — full uptime and health score. Open provider docs ↗

Uptime historystarts after first probe

On our probe schedule. Uptime charts appear after the first check lands.

Example responsefrom provider docs — not verified by us
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
    }
  }
}
Call itcurl · fetch · python
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())
Endpoints · 2On scheduleFULL DOCS ↗
On schedule — GET /daily_json.js awaits first probe
GET/daily_json.jsPROBED

Central Bank of Russia daily FX rates, served as JSON

GET/daily_json.js?limit=5

Paginated variant with limit parameter.

Machine-readable spec

We probe a documented GET and expect 2xx JSON — full uptime and health score. Export includes every documented route below.

Response-shape history

Not tracked yet. Shape-change history starts once this API joins our probe schedule.

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?

Bank of Russia is catalogued but not yet on our probe schedule, so we don't publish a live status for it. Check the provider's own status page or docs for its current state.