/v1/currencies
List quoted currency codes
Try it live
10 free calls per day — no sign-up, no API key. Goes through the oanor gateway.
It works. Grab an API key and use it in your project.
Get an API keyCode 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_..."}
)
Example response
A real response from this endpoint, captured by the latest 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
…