/v1/currencies
List quoted currency codes
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/myanmar-fx-api/v1/currencies" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/myanmar-fx-api/v1/currencies", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/myanmar-fx-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/myanmar-fx-api/v1/currencies",
headers={"x-oanor-key": "oanor_test_..."}
)
Beispiel-Response
Echte Antwort dieses Endpoints, erfasst beim letzten Health-Check.
{
"data": {
"base": "MMK",
"date": "2026-06-12",
"count": 38,
"currencies": [
{
"currency": "AUD",
"quoted_per": 1
},
{
"currency": "BDT",
"quoted_per": 1
},
{
"currency": "BND",
"quoted_per": 1
},
{
"currency": "BRL",
"quoted_per": 1
},
{
"currency": "CAD",
"quoted_per": 1
},
{
"currency": "CHF",
"quoted_per": 1
},
{
"currency": "CNY",
"quoted_per": 1
},
{
"currency": "CZK",
"quoted_per": 1
},
{
"currency": "DKK",
"quoted_per": 1
},
{
"currency": "EGP",
"quoted_per": 1
},
{
"currency": "EUR",
"quoted_per": 1
},
{
"currency": "GBP",
"quoted_per": 1
},
{
"currency": "HKD",
"quoted_per": 1
},
{
"currency": "IDR",
"quoted_per": 100
},
{
"currency": "ILS",
"quoted_per": 1
},
{
"currency": "INR",
"quoted_per": 1
},
{
"currency": "JPY",
"quoted_per": 100
},
{
"currency": "KES",
"quoted_per": 1
},
{
"currency": "KHR",
"quoted_per": 100
},
{
"currency": "KRW",
"quoted_per": 100
},
{
"currency": "KWD",
"quoted_per": 1
},
{
"currency": "LAK",
"quoted_per": 100
},
{
"currency": "LKR",
"quoted_per": 1
},
{
"currency": "MYR",
"quoted_per": 1
},
{
"currency": "NOK",
"quoted_per": 1
},
{
"currency": "NPR",
"quoted_per": 1
},
{
"currency": "NZD",
"quoted_per": 1
},
{
"currency": "PHP",
"quoted_per": 1
},
{
"currency": "PKR",
"quoted_per": 1
},
{
"currency": "RSD",
"quoted_per": 1
…