Skip to content
GET /v1/meta

Bank metadata & endpoint guide

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/cba-api

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

Get an API key

Code snippets

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

Example response

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

{
    "data": {
        "bank": "Central Bank of Armenia (CBA)",
        "note": "per_unit_amd = Rate / Amount, so conversions are correct even when the CBA quotes a currency per 10 or 100 units.",
        "source": "Central Bank of Armenia SOAP service (api.cba.am/exchangerates.asmx), keyless",
        "country": "Armenia",
        "examples": {
            "rate": "/v1/rate?symbol=USD",
            "latest": "/v1/latest?symbols=USD,EUR,RUB",
            "convert": "/v1/convert?from=USD&to=AMD&amount=100",
            "currencies": "/v1/currencies"
        },
        "endpoints": {
            "/v1/rate": "single-currency rate with amount, rate and per-unit AMD value (symbol=USD)",
            "/v1/latest": "latest official AMD rates for all (or selected) currencies (symbols optional)",
            "/v1/convert": "convert an amount between any two quoted currencies via AMD (from, to, amount)",
            "/v1/currencies": "all currencies quoted by the CBA"
        },
        "cache_ttl_ms": 300000,
        "base_currency": "AMD"
    },
    "meta": {
        "timestamp": "2026-06-15T11:15:46.446Z",
        "request_id": "2bc48ab5-6439-43c5-8a00-29bba4b53405"
    },
    "status": "ok",
    "message": "Meta",
    "success": true
}