Naar de inhoud
GET /v1/currencies

List quoted currency codes

Probeer het live

10 gratis calls per dag — geen registratie, geen API-key. Loopt via de oanor-gateway.

Aangepaste headers (optioneel)
api.oanor.com/myanmar-fx-api

Het werkt. Haal een API-key op en gebruik hem in je project.

Verkrijg een API-sleutel

Codefragmenten

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

Voorbeeldrespons

Een echte respons van dit endpoint, vastgelegd bij de laatste 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
           
…