Naar de inhoud
GET /v1/currencies

Every currency with a krona rate

Probeer het live

10 gratis calls per dag — geen registratie, geen API-key. Loopt via de oanor-gateway.

Aangepaste headers (optioneel)
api.oanor.com/riksbank-api

Het werkt. Haal een API-key op en gebruik hem in je project.

Verkrijg een API-sleutel

Codefragmenten

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

Voorbeeldrespons

Een echte respons van dit endpoint, vastgelegd bij de laatste health check.

{
    "data": {
        "count": 52,
        "source": "Sveriges Riksbank",
        "currencies": [
            {
                "currency": "ATS",
                "series_id": "SEKATSPMI",
                "description": "ATS"
            },
            {
                "currency": "AUD",
                "series_id": "SEKAUDPMI",
                "description": "AUD"
            },
            {
                "currency": "BEF",
                "series_id": "SEKBEFPMI",
                "description": "BEF"
            },
            {
                "currency": "BGN",
                "series_id": "SEKBGNPMI",
                "description": "BGN"
            },
            {
                "currency": "BRL",
                "series_id": "SEKBRLPMI",
                "description": "BRL"
            },
            {
                "currency": "CAD",
                "series_id": "SEKCADPMI",
                "description": "CAD"
            },
            {
                "currency": "CHF",
                "series_id": "SEKCHFPMI",
                "description": "CHF"
            },
            {
                "currency": "CNY",
                "series_id": "SEKCNYPMI",
                "description": "CNY"
            },
            {
                "currency": "CYP",
                "series_id": "SEKCYPPMI",
                "description": "CYP"
            },
            {
                "currency": "CZK",
                "series_id": "SEKCZKPMI",
                "description": "CZK"
            },
            {
                "currency": "DEM",
                "series_id": "SEKDEMPMI",
                "description": "DEM"
            },
            {
                "currency": "DKK",
                "series_id": "SEKDKKPMI",
                "description": "DKK"
            },
            {
                "currency": "EEK",
                "series_id": "SEKEEKPMI",
                "description": "EEK"
            },
            {
                "currency": "ESP",
                "series_id": "SEKESPPMI",
                "description": "ESP"
            },
            {
                "currency": "EUR",
                "series_id": "SEKEURPMI",
                "description": "EUR"
            },
            {
                "currency": "FIM",
                "series_id": "SEKFIMPMI",
                "description": "FIM"
            },
            {
                "currency": "FRF",
                "series_id": "SEKFRFPMI",
                "description": "FRF"
            },
            {
                "currency": "GBP",
                "series_id": "SEKGBPPMI",
                "description": "GBP"
            },
            {
                "currency": "GRD",
                "series_id": "SEKGRDPMI",
                "description": "GRD"
            },
            {
                "currency": "HKD",
                "series_id": "SEKHKDPMI",
                "description": "HKD"
            },
            {
                "currency"
…