Zum Inhalt springen
GET /v1/rates

Official MNB rate for every currency vs the forint

Live testen

10 freie Calls pro Tag — keine Anmeldung, kein API-Key. Geht durchs oanor-Gateway.

Eigene Header (optional)
api.oanor.com/mnb-api

Funktioniert. Hol dir einen API-Key und nutze sie in deinem Projekt.

API-Key holen

Code-Snippets

curl "https://api.oanor.com/mnb-api/v1/rates" \
  -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/mnb-api/v1/rates", {
  headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/mnb-api/v1/rates");
curl_setopt($ch, CURLOPT_HTTPHEADER, ["x-oanor-key: oanor_test_..."]);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
$out = curl_exec($ch);
import requests
requests.get(
    "https://api.oanor.com/mnb-api/v1/rates",
    headers={"x-oanor-key": "oanor_test_..."}
)

Beispiel-Response

Echte Antwort dieses Endpoints, erfasst beim letzten Health-Check.

{
    "data": {
        "base": "HUF",
        "date": "2026-06-10",
        "count": 32,
        "rates": [
            {
                "unit": 1,
                "value": 215.89,
                "currency": "AUD",
                "huf_per_unit": 215.89
            },
            {
                "unit": 1,
                "value": 59.54,
                "currency": "BRL",
                "huf_per_unit": 59.54
            },
            {
                "unit": 1,
                "value": 221.04,
                "currency": "CAD",
                "huf_per_unit": 221.04
            },
            {
                "unit": 1,
                "value": 385.51,
                "currency": "CHF",
                "huf_per_unit": 385.51
            },
            {
                "unit": 1,
                "value": 45.44,
                "currency": "CNY",
                "huf_per_unit": 45.44
            },
            {
                "unit": 1,
                "value": 14.72,
                "currency": "CZK",
                "huf_per_unit": 14.72
            },
            {
                "unit": 1,
                "value": 47.61,
                "currency": "DKK",
                "huf_per_unit": 47.61
            },
            {
                "unit": 1,
                "value": 355.84,
                "currency": "EUR",
                "huf_per_unit": 355.84
            },
            {
                "unit": 1,
                "value": 412.29,
                "currency": "GBP",
                "huf_per_unit": 412.29
            },
            {
                "unit": 1,
                "value": 39.3,
                "currency": "HKD",
                "huf_per_unit": 39.3
            },
            {
                "unit": 100,
                "value": 1.72,
                "currency": "IDR",
                "huf_per_unit": 0.0172
            },
            {
                "unit": 1,
                "value": 103.51,
                "currency": "ILS",
                "huf_per_unit": 103.51
            },
            {
                "unit": 1,
                "value": 3.23,
                "currency": "INR",
                "huf_per_unit": 3.23
            },
            {
                "unit": 1,
                "value": 2.48,
                "currency": "ISK",
                "huf_per_unit": 2.48
            },
            {
                "unit": 100,
                "value": 191.97,
                "currency": "JPY",
                "huf_per_unit": 1.9197
            },
            {
                "unit": 100,
                "value": 20.22,
                "currency": "KRW",
                "huf_per_unit": 0.2022
            },
            {
                "unit": 1,
                "value": 17.66,
                "currency": "MXN",
                "huf_per_unit": 17.66
            },
            {
                "unit": 1,
                "value": 75.77,
                "currency": "MYR",
                "huf_per_unit":
…