Naar de inhoud
GET /v1/code

Currency by alphabetic or numeric code

Probeer het live

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

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

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

Verkrijg een API-sleutel

Codefragmenten

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

Voorbeeldrespons

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

{
    "data": {
        "currency": {
            "code": "USD",
            "name": "US Dollar",
            "active": true,
            "numeric": "840",
            "countries": [
                "AMERICAN SAMOA",
                "BONAIRE, SINT EUSTATIUS AND SABA",
                "BRITISH INDIAN OCEAN TERRITORY (THE)",
                "ECUADOR",
                "EL SALVADOR",
                "GUAM",
                "HAITI",
                "MARSHALL ISLANDS (THE)",
                "MICRONESIA (FEDERATED STATES OF)",
                "NORTHERN MARIANA ISLANDS (THE)",
                "PALAU",
                "PANAMA",
                "PUERTO RICO",
                "TIMOR-LESTE",
                "TURKS AND CAICOS ISLANDS (THE)",
                "UNITED STATES MINOR OUTLYING ISLANDS (THE)",
                "UNITED STATES OF AMERICA (THE)",
                "VIRGIN ISLANDS (BRITISH)",
                "VIRGIN ISLANDS (U.S.)"
            ],
            "minor_unit": 2
        }
    },
    "meta": {
        "timestamp": "2026-06-08T18:25:12.472Z",
        "request_id": "50e1b683-d4bf-43d4-bef7-9f196c97ae62"
    },
    "status": "ok",
    "message": "Currency retrieved successfully",
    "success": true
}