Documentation

This API provides a simple way to get exchange rates. Perfect for educational projects, testing and prototyping applications.

The API does not require authentication and is completely free. You can use it in your projects without restrictions.

If you pass a date in "DD.MM.YYYY" format as a GET parameter to the API, it will return exchange rates for that date. Without GET parameters, the API returns exchange rates for today.

  • Cur_ID – internal code
  • Date – date for which the exchange rate is requested
  • Cur_Abbreviation – alphabetic code
  • Cur_Scale – number of foreign currency units
  • Cur_Name – currency name in English
  • Cur_OfficialRate – exchange rate

Main Features

  • Getting exchange rates for popular currencies
  • Simple HTTP interface
  • JSON response format
  • No authentication required
  • Free and without limitations
  • CORS support

Response Format


[
  {
    "Cur_ID": 145,
    "Date": "2025-11-18T00:00:00",
    "Cur_Abbreviation": "USD",
    "Cur_Scale": 1,
    "Cur_Name": "US Dollar",
    "Cur_OfficialRate": 2.5012
  },
  {
    "Cur_ID": 292,
    "Date": "2025-11-18T00:00:00",
    "Cur_Abbreviation": "EUR",
    "Cur_Scale": 1,
    "Cur_Name": "Euro",
    "Cur_OfficialRate": 2.6987
  },
  {
    "Cur_ID": 298,
    "Date": "2025-11-18T00:00:00",
    "Cur_Abbreviation": "RUB",
    "Cur_Scale": 100,
    "Cur_Name": "Russian Ruble",
    "Cur_OfficialRate": 3.2156
  },
  {
    "Cur_ID": 293,
    "Date": "2025-11-18T00:00:00",
    "Cur_Abbreviation": "GBP",
    "Cur_Scale": 1,
    "Cur_Name": "British Pound",
    "Cur_OfficialRate": 3.1023
  }
]