Skip to content
GET /v1/meta

Service metadata

Try it live

10 free calls per day — no sign-up, no API key. Goes through the oanor gateway.

Custom headers (optional)
api.oanor.com/myanmar-fx-api

It works. Grab an API key and use it in your project.

Get an API key

Code snippets

curl "https://api.oanor.com/myanmar-fx-api/v1/meta" \
  -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/myanmar-fx-api/v1/meta", {
  headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/myanmar-fx-api/v1/meta");
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/meta",
    headers={"x-oanor-key": "oanor_test_..."}
)

Example response

A real response from this endpoint, captured by the latest health check.

{
    "data": {
        "name": "Central Bank of Myanmar FX API",
        "source": "Central Bank of Myanmar (forex.cbm.gov.mm)",
        "endpoints": [
            {
                "path": "/v1/latest",
                "description": "All CBM reference rates (optional ?symbols=USD,EUR filter)"
            },
            {
                "path": "/v1/rate",
                "description": "Reference rate for one currency (?code=USD)"
            },
            {
                "path": "/v1/convert",
                "description": "Convert an amount between two quoted currencies or MMK (?from=USD&to=MMK&amount=100)"
            },
            {
                "path": "/v1/currencies",
                "description": "List of quoted currency codes and their quoted_per"
            },
            {
                "path": "/v1/meta",
                "description": "This metadata document"
            }
        ],
        "disclaimer": "Unofficial proxy of the public CBM reference-rate feed. Not affiliated with the Central Bank of Myanmar. Reference rates only; not tradable quotes.",
        "description": "Official daily foreign-exchange reference rates published by the Central Bank of Myanmar (CBM), quoted against the Myanmar Kyat (MMK).",
        "base_currency": "MMK",
        "quantity_note": "CBM quotes IDR, JPY, KHR, KRW, LAK and VND per 100 units; all other currencies per 1 unit. Each rate carries quoted_per plus a normalized mmk_per_unit so conversions are unambiguous."
    },
    "meta": {
        "timestamp": "2026-06-15T11:15:28.924Z",
        "request_id": "6903ce15-d4c6-4349-b97d-77013f62c256"
    },
    "status": "ok",
    "message": "Meta",
    "success": true
}