← Finanzen & Währung

Länderdetails

GET /countries/:code

Nachschlagen von detailed currency information for a specific country by its ISO country code. Liefert die country name, currency code, geographic region, und flag emoji. Useful when you know the country und need to determine its currency for conversion oder display purposes, wie z. B. auto-detecting a user's currency from their country setting.

Parameter

code erforderlich

ISO country code in URL

Beispielanfragen

Grundlegende Verwendung
curl https://nordapi.ee/api/v1/countries/NO
Norway country detail
curl https://nordapi.ee/api/v1/countries/NO
United States country detail
curl https://nordapi.ee/api/v1/countries/US
Japan country detail
curl https://nordapi.ee/api/v1/countries/JP

Live-Antwort

{
  "data": {
    "code": "NO",
    "currency": "NOK",
    "flag": "🇳🇴",
    "name": "Norway",
    "region": "Europe"
  },
  "success": true
}

Beispielantwort

{"success":true,"data":{"code":"NO","name":"Norway","currency":"NOK","region":"Europe","flag":"\u{1f1f3}\u{1f1f4}"}}