/v1/list
List all currencies
Live testen
10 freie Calls pro Tag — keine Anmeldung, kein API-Key. Geht durchs oanor-Gateway.
Funktioniert. Hol dir einen API-Key und nutze sie in deinem Projekt.
API-Key holenCode-Snippets
curl "https://api.oanor.com/currencycodes-api/v1/list" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/currencycodes-api/v1/list", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/currencycodes-api/v1/list");
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/list",
headers={"x-oanor-key": "oanor_test_..."}
)
Beispiel-Response
Echte Antwort dieses Endpoints, erfasst beim letzten Health-Check.
{
"data": {
"count": 50,
"total": 178,
"currencies": [
{
"code": "AED",
"name": "UAE Dirham",
"active": true,
"numeric": "784",
"countries": [
"UNITED ARAB EMIRATES (THE)"
],
"minor_unit": 2
},
{
"code": "AFN",
"name": "Afghani",
"active": true,
"numeric": "971",
"countries": [
"AFGHANISTAN"
],
"minor_unit": 2
},
{
"code": "ALL",
"name": "Lek",
"active": true,
"numeric": "008",
"countries": [
"ALBANIA"
],
"minor_unit": 2
},
{
"code": "AMD",
"name": "Armenian Dram",
"active": true,
"numeric": "051",
"countries": [
"ARMENIA"
],
"minor_unit": 2
},
{
"code": "AOA",
"name": "Kwanza",
"active": true,
"numeric": "973",
"countries": [
"ANGOLA"
],
"minor_unit": 2
},
{
"code": "ARS",
"name": "Argentine Peso",
"active": true,
"numeric": "032",
"countries": [
"ARGENTINA"
],
"minor_unit": 2
},
{
"code": "AUD",
"name": "Australian Dollar",
"active": true,
"numeric": "036",
"countries": [
"AUSTRALIA",
"CHRISTMAS ISLAND",
"COCOS (KEELING) ISLANDS (THE)",
"HEARD ISLAND AND McDONALD ISLANDS",
"KIRIBATI",
"NAURU",
"NORFOLK ISLAND",
"TUVALU"
],
"minor_unit": 2
},
{
"code": "AWG",
"name": "Aruban Florin",
"active": true,
"numeric": "533",
"countries": [
"ARUBA"
],
"minor_unit": 2
},
{
"code": "AZN",
"name": "Azerbaijan Manat",
"active": true,
"numeric": "944",
"countries": [
"AZERBAIJAN"
],
"minor_unit": 2
},
{
"code": "BAM",
"name": "Convertible Mark",
"active": tru
…