Zum Inhalt springen
GET /v1/code

Currency by alphabetic or numeric code

Live testen

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

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

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

API-Key holen

Code-Snippets

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_..."}
)

Beispiel-Response

Echte Antwort dieses Endpoints, erfasst beim letzten 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
}