Ir al contenido
GET /v1/meta

Bank metadata & endpoint guide

Pruébalo en vivo

10 llamadas gratis al día — sin registro, sin clave API. Pasa por el gateway de oanor.

Encabezados personalizados (opcional)
api.oanor.com/macedonia-fx-api

Funciona. Consigue una clave API y úsala en tu proyecto.

Obtener una clave API

Fragmentos de código

curl "https://api.oanor.com/macedonia-fx-api/v1/meta" \
  -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/macedonia-fx-api/v1/meta", {
  headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/macedonia-fx-api/v1/meta");
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/macedonia-fx-api/v1/meta",
    headers={"x-oanor-key": "oanor_test_..."}
)

Respuesta de ejemplo

Una respuesta real de este endpoint, capturada en la última comprobación de estado.

{
    "data": {
        "bank": "National Bank of the Republic of North Macedonia (NBRM)",
        "note": "per_unit_mkd = middle_rate / nominal, so conversions are correct even when the NBRM quotes a currency per 100 units.",
        "source": "NBRM XML service (nbrm.mk/KLServiceNOV/GetExchangeRate), keyless",
        "country": "North Macedonia",
        "examples": {
            "rate": "/v1/rate?symbol=EUR",
            "latest": "/v1/latest?symbols=EUR,USD,GBP",
            "convert": "/v1/convert?from=EUR&to=MKD&amount=100",
            "currencies": "/v1/currencies"
        },
        "endpoints": {
            "/v1/rate": "single-currency rate with nominal, middle rate and per-unit MKD value (symbol=EUR)",
            "/v1/latest": "latest official MKD rates for all (or selected) currencies (symbols optional)",
            "/v1/convert": "convert an amount between any two quoted currencies via MKD (from, to, amount)",
            "/v1/currencies": "all currencies quoted by the NBRM"
        },
        "cache_ttl_ms": 300000,
        "base_currency": "MKD"
    },
    "meta": {
        "timestamp": "2026-06-15T11:15:35.745Z",
        "request_id": "dad23c06-da25-4bb7-bb4a-0190b46d6015"
    },
    "status": "ok",
    "message": "Meta",
    "success": true
}