/v1/meta
Bank metadata & endpoint guide
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/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_..."}
)
Beispiel-Response
Echte Antwort dieses Endpoints, erfasst beim letzten 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
}